DBTEAMLOGResellerLogInfo

Objective-C

@interface DBTEAMLOGResellerLogInfo : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGResellerLogInfo : NSObject, DBSerializable, NSCopying

The ResellerLogInfo struct.

Reseller information.

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

Instance fields

  • Reseller name.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull resellerName;

    Swift

    var resellerName: String { get }
  • Reseller email.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull resellerEmail;

    Swift

    var resellerEmail: String { get }

Constructors

  • Full constructor for the struct (exposes all instance variables).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithResellerName:(nonnull NSString *)resellerName
                                   resellerEmail:(nonnull NSString *)resellerEmail;

    Swift

    init(resellerName: String, resellerEmail: String)

    Parameters

    resellerName

    Reseller name.

    resellerEmail

    Reseller email.

    Return Value

    An initialized instance.