DeployRequest_EndpointConfig.fromJson constructor

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

Implementation

factory DeployRequest_EndpointConfig.fromJson(Map<String, dynamic> json) {
  return DeployRequest_EndpointConfig(
    endpointDisplayName: json['endpointDisplayName'] ?? '',
    dedicatedEndpointEnabled: json['dedicatedEndpointEnabled'] ?? false,
    dedicatedEndpointDisabled: json['dedicatedEndpointDisabled'] ?? false,
    privateServiceConnectConfig: decode(
      json['privateServiceConnectConfig'],
      PrivateServiceConnectConfig.fromJson,
    ),
    endpointUserId: json['endpointUserId'] ?? '',
  );
}