copyWithWrapped method
Implementation
AssetsProductReadyWebhook copyWithWrapped(
{Wrapped<String>? webhookType,
Wrapped<String>? webhookCode,
Wrapped<String>? assetReportId}) {
return AssetsProductReadyWebhook(
webhookType:
(webhookType != null ? webhookType.value : this.webhookType),
webhookCode:
(webhookCode != null ? webhookCode.value : this.webhookCode),
assetReportId:
(assetReportId != null ? assetReportId.value : this.assetReportId));
}