AssociateCustomerGatewayResponse.fromJson constructor
Implementation
factory AssociateCustomerGatewayResponse.fromJson(Map<String, dynamic> json) {
return AssociateCustomerGatewayResponse(
customerGatewayAssociation: json['CustomerGatewayAssociation'] != null
? CustomerGatewayAssociation.fromJson(
json['CustomerGatewayAssociation'] as Map<String, dynamic>)
: null,
);
}