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