DBTEAMLOGTeamDetails
Objective-C
@interface DBTEAMLOGTeamDetails : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGTeamDetails : NSObject, DBSerializable, NSCopying
The TeamDetails struct.
More details about the team.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
The name of the team.
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
teamThe name of the team.
Return Value
An initialized instance.
View on GitHub
DBTEAMLOGTeamDetails Class Reference