CreateEmailIdentityResponse.fromJson constructor
CreateEmailIdentityResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory CreateEmailIdentityResponse.fromJson(Map<String, dynamic> json) {
return CreateEmailIdentityResponse(
dkimAttributes: json['DkimAttributes'] != null
? DkimAttributes.fromJson(
json['DkimAttributes'] as Map<String, dynamic>)
: null,
identityType: (json['IdentityType'] as String?)?.toIdentityType(),
verifiedForSendingStatus: json['VerifiedForSendingStatus'] as bool?,
);
}