AttachmentPreviewUrl property

String? AttachmentPreviewUrl
Gets or sets the URL of the attachment preview.

Implementation

String? get AttachmentPreviewUrl => this._attachmentPreviewUrl;
void AttachmentPreviewUrl=(String? value)

Implementation

set AttachmentPreviewUrl(String? value) {
  if (this.CanSetFieldValue(this._attachmentPreviewUrl, value)) {
    this._attachmentPreviewUrl = value;
    this.Changed();
  }
}