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

    eddystoneConfigurationServiceEnable

    EddystoneConfigurationServiceEnable setting value.

    Return Value

    Initialized object. Nil if validation fails.

  • Returns current value of EddystoneConfigurationServiceEnable setting.

    Declaration

    Objective-C

    - (BOOL)getValue;

    Swift

    func getValue() -> Bool

    Return 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

    completion

    Block 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

    eddystoneConfigurationServiceEnable

    EddystoneConfigurationServiceEnable value to be written to the device.

    completion

    Block to be invoked when operation is complete.