DisassociateTrialComponentResponse.fromJson constructor

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

Implementation

factory DisassociateTrialComponentResponse.fromJson(
    Map<String, dynamic> json) {
  return DisassociateTrialComponentResponse(
    trialArn: json['TrialArn'] as String?,
    trialComponentArn: json['TrialComponentArn'] as String?,
  );
}