AssociateWebsiteCertificateAuthorityResponse.fromJson constructor

AssociateWebsiteCertificateAuthorityResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AssociateWebsiteCertificateAuthorityResponse.fromJson(
    Map<String, dynamic> json) {
  return AssociateWebsiteCertificateAuthorityResponse(
    websiteCaId: json['WebsiteCaId'] as String?,
  );
}