v1GetTvcAppRequest.fromJson constructor

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

Implementation

factory v1GetTvcAppRequest.fromJson(Map<String, dynamic> json) {
  final _organizationId = json['organizationId'] as String;
  final _tvcAppId = json['tvcAppId'] as String;
  return v1GetTvcAppRequest(
    organizationId: _organizationId,
    tvcAppId: _tvcAppId,
  );
}