AttachmentLongPathName property
      
      String?
      get
      AttachmentLongPathName
      
    
    
Implementation
String? get AttachmentLongPathName => this._attachLongPathName;
      
      set
      AttachmentLongPathName
      (String? value) 
      
    
    
    
Implementation
set AttachmentLongPathName(String? value) {
  if (this.CanSetFieldValue(this._attachLongPathName, value)) {
    this._attachLongPathName = value;
    this.Changed();
  }
}