TGetTvcAppDeploymentsResponse.fromJson constructor
Implementation
factory TGetTvcAppDeploymentsResponse.fromJson(Map<String, dynamic> json) {
final _tvcDeployments = (json['tvcDeployments'] as List).map((e) => v1TvcDeployment.fromJson(e as Map<String, dynamic>)).toList();
return TGetTvcAppDeploymentsResponse(
tvcDeployments: _tvcDeployments,
);
}