CreateBillingGroupResponse.fromJson constructor

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

Implementation

factory CreateBillingGroupResponse.fromJson(Map<String, dynamic> json) {
  return CreateBillingGroupResponse(
    billingGroupArn: json['billingGroupArn'] as String?,
    billingGroupId: json['billingGroupId'] as String?,
    billingGroupName: json['billingGroupName'] as String?,
  );
}