AssociateCustomerGatewayResponse.fromJson constructor

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

Implementation

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