@jackdevau/up-api API Reference
    Preparing search index...

    Interface AttachmentResource

    interface AttachmentResource {
        type: string;
        id: string;
        attributes: {
            createdAt: string | null;
            fileURL: string | null;
            fileURLExpiresAt: string;
            fileExtension: string | null;
            fileContentType: string | null;
        };
        relationships: {
            transaction: {
                data: { type: string; id: string };
                links?: { related: string };
            };
        };
        links?: { self: string };
    }
    Index

    Properties

    type: string
    id: string
    attributes: {
        createdAt: string | null;
        fileURL: string | null;
        fileURLExpiresAt: string;
        fileExtension: string | null;
        fileContentType: string | null;
    }
    relationships: {
        transaction: {
            data: { type: string; id: string };
            links?: { related: string };
        };
    }
    links?: { self: string }