DescribeTimeToLiveOutput.fromJson constructor
Implementation
factory DescribeTimeToLiveOutput.fromJson(Map<String, dynamic> json) {
return DescribeTimeToLiveOutput(
timeToLiveDescription: json['TimeToLiveDescription'] != null
? TimeToLiveDescription.fromJson(
json['TimeToLiveDescription'] as Map<String, dynamic>)
: null,
);
}