DBFILEPROPERTIESTemplateOwnerType

Objective-C

@interface DBFILEPROPERTIESTemplateOwnerType
    : NSObject <DBSerializable, NSCopying>

Swift

class DBFILEPROPERTIESTemplateOwnerType : NSObject, DBSerializable, NSCopying

The TemplateOwnerType 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 “user”.

    Description of the “user” tag state: Template will be associated with a user.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithUser;

    Swift

    init(user: ())

    Return Value

    An initialized instance.

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

    Description of the “team” tag state: Template will be associated with a team.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithTeam;

    Swift

    init(team: ())

    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 “user”.

    Declaration

    Objective-C

    - (BOOL)isUser;

    Swift

    func isUser() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isTeam;

    Swift

    func isTeam() -> Bool

    Return Value

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

  • 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.