ESTSettingEddystoneConfigurationServiceEnable
@interface ESTSettingEddystoneConfigurationServiceEnable
: ESTSettingReadWrite <NSCopying>
ESTSettingEddystoneConfigurationServiceEnable represents EddystoneConfigurationServiceEnable setting value.
-
Designated initializer. Validates provided value internally with +validationErrorForValue:.
See
+[ESTSettingEddystoneConfigurationServiceEnable validationErrorForValue:]
Declaration
Objective-C
- (nonnull instancetype)initWithValue:(BOOL)eddystoneConfigurationServiceEnable;Swift
init(value eddystoneConfigurationServiceEnable: Bool)Parameters
eddystoneConfigurationServiceEnableEddystoneConfigurationServiceEnable setting value.
Return Value
Initialized object. Nil if validation fails.
-
Returns current value of EddystoneConfigurationServiceEnable setting.
Declaration
Objective-C
- (BOOL)getValue;Swift
func getValue() -> BoolReturn Value
EddystoneConfigurationServiceEnable value.
-
Method allows to read value of initialized EddystoneConfigurationServiceEnable setting object.
Declaration
Objective-C
- (void)readValueWithCompletion: (nonnull ESTSettingEddystoneConfigurationServiceEnableCompletionBlock) completion;Swift
func readValue(completion: @escaping ESTSettingEddystoneConfigurationServiceEnableCompletionBlock)Parameters
completionBlock to be invoked when operation is complete.
-
Method allows to create write operation from already initialized EddystoneConfigurationServiceEnable setting object. Value provided during initialization will be used as a desired value.
Declaration
Objective-C
- (void) writeValue:(BOOL)eddystoneConfigurationServiceEnable completion: (nonnull ESTSettingEddystoneConfigurationServiceEnableCompletionBlock) completion;Swift
func writeValue(_ eddystoneConfigurationServiceEnable: Bool, completion: @escaping ESTSettingEddystoneConfigurationServiceEnableCompletionBlock)Parameters
eddystoneConfigurationServiceEnableEddystoneConfigurationServiceEnable value to be written to the device.
completionBlock to be invoked when operation is complete.
View on GitHub
ESTSettingEddystoneConfigurationServiceEnable Class Reference