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