DeleteApplicationReferenceDataSourceResponse.fromJson constructor

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

Implementation

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