copyWith method
Implementation
TransferOriginatorCreateRequest copyWith(
    {String? clientId, String? secret, String? companyName}) {
  return TransferOriginatorCreateRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      companyName: companyName ?? this.companyName);
}