DBTEAMLOGGetTeamEventsArgSerializer
Objective-C
@interface DBTEAMLOGGetTeamEventsArgSerializer : NSObject
Swift
class DBTEAMLOGGetTeamEventsArgSerializer : NSObject
The serialization class for the GetTeamEventsArg
struct.
-
Serializes
DBTEAMLOGGetTeamEventsArg
instances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMLOGGetTeamEventsArg *)instance;
Swift
class func serialize(_ instance: DBTEAMLOGGetTeamEventsArg) -> [String : Any]?
Parameters
instance
An instance of the
DBTEAMLOGGetTeamEventsArg
API object.Return Value
A json-compatible dictionary representation of the
DBTEAMLOGGetTeamEventsArg
API object. -
Deserializes
DBTEAMLOGGetTeamEventsArg
instances.Declaration
Objective-C
+ (nonnull DBTEAMLOGGetTeamEventsArg *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;
Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMLOGGetTeamEventsArg
Parameters
dict
A json-compatible dictionary representation of the
DBTEAMLOGGetTeamEventsArg
API object.Return Value
An instantiation of the
DBTEAMLOGGetTeamEventsArg
object.