DBFILESSyncSetting

Objective-C

@interface DBFILESSyncSetting : NSObject <DBSerializable, NSCopying>

Swift

class DBFILESSyncSetting : NSObject, DBSerializable, NSCopying

The SyncSetting union.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

Constructors

  • Initializes union class with tag state of “default”.

    Description of the “default” tag state: On first sync to members’ computers, the specified folder will follow its parent folder’s setting or otherwise follow default sync behavior.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithDefault_;

    Swift

    init(default_: ())

    Return Value

    An initialized instance.

  • Initializes union class with tag state of “not_synced”.

    Description of the “not_synced” tag state: On first sync to members’ computers, the specified folder will be set to not sync with selective sync.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithNotSynced;

    Swift

    init(notSynced: ())

    Return Value

    An initialized instance.

  • Initializes union class with tag state of “not_synced_inactive”.

    Description of the “not_synced_inactive” tag state: The specified folder’s not_synced setting is inactive due to its location or other configuration changes. It will follow its parent folder’s setting.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithNotSyncedInactive;

    Swift

    init(notSyncedInactive: ())

    Return Value

    An initialized instance.

  • Initializes union class with tag state of “other”.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithOther;

    Swift

    init(other: ())

    Return Value

    An initialized instance.

Tag state methods

  • Retrieves whether the union’s current tag state has value “default”.

    Declaration

    Objective-C

    - (BOOL)isDefault_;

    Swift

    func isDefault_() -> Bool

    Return Value

    Whether the union’s current tag state has value “default”.

  • Retrieves whether the union’s current tag state has value “not_synced”.

    Declaration

    Objective-C

    - (BOOL)isNotSynced;

    Swift

    func isNotSynced() -> Bool

    Return Value

    Whether the union’s current tag state has value “not_synced”.

  • Retrieves whether the union’s current tag state has value “not_synced_inactive”.

    Declaration

    Objective-C

    - (BOOL)isNotSyncedInactive;

    Swift

    func isNotSyncedInactive() -> Bool

    Return Value

    Whether the union’s current tag state has value “not_synced_inactive”.

  • Retrieves whether the union’s current tag state has value “other”.

    Declaration

    Objective-C

    - (BOOL)isOther;

    Swift

    func isOther() -> Bool

    Return Value

    Whether the union’s current tag state has value “other”.

  • Retrieves string value of union’s current tag state.

    Declaration

    Objective-C

    - (nonnull NSString *)tagName;

    Swift

    func tagName() -> String

    Return Value

    A human-readable string representing the union’s current tag state.