Type alias AttachmentPartsFragment
 
AttachmentPartsFragment: { 
    __typename: "Attachment"; 
    fileExtension: string | null; 
    fileName: string; 
    fileSize: { 
        __typename: "FileSize"; 
        kiloBytes: number; 
        megaBytes: number; 
    }; 
    id: string; 
    updatedAt: { 
        __typename: "DateTime"; 
        iso8601: string; 
        unixTimestamp: string; 
    }; 
}
Type declaration
- 
__typename: "Attachment"
- 
fileExtension: string | null
- 
fileName: string
- 
fileSize: { 
 __typename: "FileSize";
 kiloBytes: number;
 megaBytes: number;
 }
- 
__typename: "FileSize"
- 
kiloBytes: number
- 
megaBytes: number
 
- 
id: string
- 
updatedAt: { 
 __typename: "DateTime";
 iso8601: string;
 unixTimestamp: string;
 }
- 
__typename: "DateTime"
- 
iso8601: string
- 
unixTimestamp: string