copyWithWrapped method
Implementation
KnowledgeBaseDocumentMetadataResponseModel copyWithWrapped(
{Wrapped<int>? createdAtUnixSecs,
Wrapped<int>? lastUpdatedAtUnixSecs,
Wrapped<int>? sizeBytes}) {
return KnowledgeBaseDocumentMetadataResponseModel(
createdAtUnixSecs: (createdAtUnixSecs != null
? createdAtUnixSecs.value
: this.createdAtUnixSecs),
lastUpdatedAtUnixSecs: (lastUpdatedAtUnixSecs != null
? lastUpdatedAtUnixSecs.value
: this.lastUpdatedAtUnixSecs),
sizeBytes: (sizeBytes != null ? sizeBytes.value : this.sizeBytes));
}