// This file is generated as an Apex representation of the // corresponding sObject and its fields. // This read-only file is used by the Apex Language Server to // provide code smartness, and is deleted each time you // refresh your sObject definitions. // To edit your sObjects and their fields, edit the corresponding // .object-meta.xml and .field-meta.xml files. global class Attachment { global Id Id; global Boolean IsDeleted; global SObject Parent; global Id ParentId; global String Name; global Boolean IsPrivate; global String ContentType; global Integer BodyLength; global Blob Body; global SObject Owner; global Id OwnerId; global Datetime CreatedDate; global User CreatedBy; global Id CreatedById; global Datetime LastModifiedDate; global User LastModifiedBy; global Id LastModifiedById; global Datetime SystemModstamp; global String Description; global List RelatedRecord; global Attachment () { } }