copyWith method
Implementation
PartnerCustomerGetResponse copyWith(
    {PartnerEndCustomer? endCustomer, String? requestId}) {
  return PartnerCustomerGetResponse(
      endCustomer: endCustomer ?? this.endCustomer,
      requestId: requestId ?? this.requestId);
}