DBSEENSTATEPlatformType

Objective-C

@interface DBSEENSTATEPlatformType : NSObject <DBSerializable, NSCopying>

Swift

class DBSEENSTATEPlatformType : NSObject, DBSerializable, NSCopying

The PlatformType union.

Possible platforms on which a user may view content.

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

    Description of the “web” tag state: The content was viewed on the web.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithWeb;

    Swift

    init(web: ())

    Return Value

    An initialized instance.

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

    Description of the “desktop” tag state: The content was viewed on a desktop client.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithDesktop;

    Swift

    init(desktop: ())

    Return Value

    An initialized instance.

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

    Description of the “mobile_ios” tag state: The content was viewed on a mobile iOS client.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithMobileIos;

    Swift

    init(mobileIos: ())

    Return Value

    An initialized instance.

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

    Description of the “mobile_android” tag state: The content was viewed on a mobile android client.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithMobileAndroid;

    Swift

    init(mobileAndroid: ())

    Return Value

    An initialized instance.

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

    Description of the “api” tag state: The content was viewed from an API client.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithApi;

    Swift

    init(api: ())

    Return Value

    An initialized instance.

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

    Description of the “unknown” tag state: The content was viewed on an unknown platform.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithUnknown;

    Swift

    init(unknown: ())

    Return Value

    An initialized instance.

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

    Description of the “mobile” tag state: The content was viewed on a mobile client. DEPRECATED: Use mobile_ios or mobile_android instead.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithMobile;

    Swift

    init(mobile: ())

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

    Declaration

    Objective-C

    - (BOOL)isWeb;

    Swift

    func isWeb() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isDesktop;

    Swift

    func isDesktop() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isMobileIos;

    Swift

    func isMobileIos() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isMobileAndroid;

    Swift

    func isMobileAndroid() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isApi;

    Swift

    func isApi() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isUnknown;

    Swift

    func isUnknown() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isMobile;

    Swift

    func isMobile() -> Bool

    Return Value

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

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