DBTEAMLOGNonTrustedTeamDetails
Objective-C
@interface DBTEAMLOGNonTrustedTeamDetails : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGNonTrustedTeamDetails : NSObject, DBSerializable, NSCopying
The NonTrustedTeamDetails
struct.
The email to which the request was sent
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
The email to which the request was sent.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull team;
Swift
var team: String { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithTeam:(nonnull NSString *)team;
Swift
init(team: String)
Parameters
team
The email to which the request was sent.
Return Value
An initialized instance.