copyWith method
Implementation
PartnerCustomerEnableResponse copyWith(
{String? productionSecret, String? requestId}) {
return PartnerCustomerEnableResponse(
productionSecret: productionSecret ?? this.productionSecret,
requestId: requestId ?? this.requestId);
}