BackupSelectionsListMember.fromJson constructor

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

Implementation

factory BackupSelectionsListMember.fromJson(Map<String, dynamic> json) {
  return BackupSelectionsListMember(
    backupPlanId: json['BackupPlanId'] as String?,
    creationDate: timeStampFromJson(json['CreationDate']),
    creatorRequestId: json['CreatorRequestId'] as String?,
    iamRoleArn: json['IamRoleArn'] as String?,
    selectionId: json['SelectionId'] as String?,
    selectionName: json['SelectionName'] as String?,
  );
}