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