MaggioAnalyticsContextData

Objective-C

@interface MaggioAnalyticsContextData : NSObject

+(NSString *) appName;
+(NSString *) bundleId;
+(NSDictionary *) deviceAttributes;
+(NSString *) timestamp;
+(NSString *) timestampWithTZ;
+(NSString *) timestampWithLocalTZ;
+(NSDateFormatter *) dateFormatterForTZ;

@end

Swift

class MaggioAnalyticsContextData : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    +(NSString *) appName;

    Swift

    class func appName() -> String!
  • Undocumented

    Declaration

    Objective-C

    +(NSString *) bundleId;

    Swift

    class func bundleId() -> String!
  • Undocumented

    Declaration

    Objective-C

    +(NSDictionary *) deviceAttributes;

    Swift

    class func deviceAttributes() -> [AnyHashable : Any]!
  • Undocumented

    Declaration

    Objective-C

    +(NSString *) timestamp;

    Swift

    class func timestamp() -> String!
  • Undocumented

    Declaration

    Objective-C

    +(NSString *) timestampWithTZ;

    Swift

    class func timestampWithTZ() -> String!
  • Undocumented

    Declaration

    Objective-C

    +(NSString *) timestampWithLocalTZ;

    Swift

    class func timestampWithLocalTZ() -> String!
  • Undocumented

    Declaration

    Objective-C

    +(NSDateFormatter *) dateFormatterForTZ;

    Swift

    class func dateFormatterForTZ() -> DateFormatter!