RemoveSchemaVersionMetadataResponse.fromJson constructor
RemoveSchemaVersionMetadataResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory RemoveSchemaVersionMetadataResponse.fromJson(
Map<String, dynamic> json) {
return RemoveSchemaVersionMetadataResponse(
latestVersion: json['LatestVersion'] as bool?,
metadataKey: json['MetadataKey'] as String?,
metadataValue: json['MetadataValue'] as String?,
registryName: json['RegistryName'] as String?,
schemaArn: json['SchemaArn'] as String?,
schemaName: json['SchemaName'] as String?,
schemaVersionId: json['SchemaVersionId'] as String?,
versionNumber: json['VersionNumber'] as int?,
);
}