DeleteApplicationVpcConfigurationResponse.fromJson constructor

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

Implementation

factory DeleteApplicationVpcConfigurationResponse.fromJson(
    Map<String, dynamic> json) {
  return DeleteApplicationVpcConfigurationResponse(
    applicationARN: json['ApplicationARN'] as String?,
    applicationVersionId: json['ApplicationVersionId'] as int?,
  );
}