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