Mobile Locker JavaScript SDK
    Preparing search index...

    Interface Product

    A product record available to the current team. Mirrors the iOS GRDBProduct Swift model's toJSON() output.

    interface Product {
        id: number;
        team_id: number;
        name: string;
        slug: string;
        external_id: string;
        status: string;
        is_active: boolean;
        is_external: boolean;
        is_editable: boolean;
        created_at: string;
        updated_at: string;
        presentation_ids: number[];
    }
    Index

    Properties

    id: number
    team_id: number
    name: string
    slug: string
    external_id: string
    status: string
    is_active: boolean
    is_external: boolean
    is_editable: boolean
    created_at: string
    updated_at: string
    presentation_ids: number[]

    IDs of presentations associated with this product.