interface CatalogAttachmentResponse {
    id: string;
    isPublic: boolean;
    ownerId: string;
    ownerType: "organization";
    type: string;
    url: string;
}

Properties

id: string

Unique identifier for the attachment

isPublic: boolean

Whether the attachment is accessible without being logged in, default false

ownerId: string

Id of the linked organization for this attachment

ownerType: "organization"

Type of the owner for this attachment (always organization)

type: string

The mime type of the file (e.g. image/png)

url: string

The url this file can be accessed via

Generated using TypeDoc