DescribeAccountCustomizationResponse.fromJson constructor
DescribeAccountCustomizationResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory DescribeAccountCustomizationResponse.fromJson(
Map<String, dynamic> json) {
return DescribeAccountCustomizationResponse(
accountCustomization: json['AccountCustomization'] != null
? AccountCustomization.fromJson(
json['AccountCustomization'] as Map<String, dynamic>)
: null,
arn: json['Arn'] as String?,
awsAccountId: json['AwsAccountId'] as String?,
namespace: json['Namespace'] as String?,
requestId: json['RequestId'] as String?,
);
}