DeviceDiscovery
MOVE Models
data class DeviceDiscovery(
val startDelay: Long?,
val duration: Long?,
val interval: Long?,
val stopScanOnFirstDiscovered: Boolean = false,
)public struct DeviceDiscovery {
public var startDelay: TimeInterval = 120
public var interval: TimeInterval = 300
public var duration: TimeInterval = 10
public var stopScanOnFirstDiscovered: Bool = false
}export type MoveSdkDeviceDiscovery = {
startDelay?: number;
duration?: number;
interval?: number;
stopScanOnFirstDiscovered?: boolean;
};import 'package:movesdk/io/dolphin/move/device_discovery_options.dart';class DeviceDiscoveryOptions {
int? startDelay;
int? duration;
int? interval;
bool? stopScanOnFirstDiscovered;
}Last updated