interface Attachment {
    id: string;
    isPublic: boolean;
    objectId: string;
    ownerId?: string;
    ownerType: string;
    type: string;
}

Implemented by

Properties

id: string

attachment id

isPublic: boolean

is attachment public

objectId: string

object id (usually refers to the bucket object)

ownerId?: string

owner id

ownerType: string

owner type, user, organization, product, etc

type: string

attachment type

Generated using TypeDoc