AttachmentUploadUrlPartsFragment: {
    __typename: "AttachmentUploadUrl";
    attachment: {
        __typename: "Attachment";
        fileExtension: string | null;
        fileName: string;
        fileSize: {
            __typename: "FileSize";
            kiloBytes: number;
            megaBytes: number;
        };
        id: string;
        updatedAt: {
            __typename: "DateTime";
            iso8601: string;
            unixTimestamp: string;
        };
    };
    expiresAt: {
        __typename: "DateTime";
        iso8601: string;
        unixTimestamp: string;
    };
    uploadFormData: {
        __typename?: "UploadFormData";
        key: string;
        value: string;
    }[];
    uploadFormUrl: string;
}

Type declaration

  • __typename: "AttachmentUploadUrl"
  • attachment: {
        __typename: "Attachment";
        fileExtension: string | null;
        fileName: string;
        fileSize: {
            __typename: "FileSize";
            kiloBytes: number;
            megaBytes: number;
        };
        id: string;
        updatedAt: {
            __typename: "DateTime";
            iso8601: string;
            unixTimestamp: string;
        };
    }
    • __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
  • expiresAt: {
        __typename: "DateTime";
        iso8601: string;
        unixTimestamp: string;
    }
    • __typename: "DateTime"
    • iso8601: string
    • unixTimestamp: string
  • uploadFormData: {
        __typename?: "UploadFormData";
        key: string;
        value: string;
    }[]
  • uploadFormUrl: string

Generated using TypeDoc