RefreshSchemasStatus.fromJson constructor
RefreshSchemasStatus.fromJson(
- Map<String, dynamic> json
)
Implementation
factory RefreshSchemasStatus.fromJson(Map<String, dynamic> json) {
return RefreshSchemasStatus(
endpointArn: json['EndpointArn'] as String?,
lastFailureMessage: json['LastFailureMessage'] as String?,
lastRefreshDate: timeStampFromJson(json['LastRefreshDate']),
replicationInstanceArn: json['ReplicationInstanceArn'] as String?,
status: (json['Status'] as String?)?.toRefreshSchemasStatusTypeValue(),
);
}