AssociateTrialComponentResponse.fromJson constructor

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

Implementation

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