@halix/action-sdk
    Preparing search index...

    Interface ContentResource

    ContentResource is an interface defining the properties of a content resource.

    interface ContentResource {
        contentType?: string;
        deserialize?: (data: any) => ContentResource;
        extension?: null | string;
        fileName?: string;
        fileSize?: number;
        isPublic: boolean;
        mimeType?: string;
        name?: null | string;
        objKey?: string;
        organizationKey: string;
        resourceType: string;
        sandboxKey: string;
        tags: string[];
        userKey: string;
    }
    Index

    Properties

    contentType?: string
    deserialize?: (data: any) => ContentResource
    extension?: null | string
    fileName?: string
    fileSize?: number
    isPublic: boolean
    mimeType?: string
    name?: null | string
    objKey?: string
    organizationKey: string
    resourceType: string
    sandboxKey: string
    tags: string[]
    userKey: string