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