Type Alias UiAppSetDataPayload

UiAppSetDataPayload: {
    canvas: CanvasRetrieve;
    client: string | null;
    component_id: string;
    display_mode: string | undefined;
    height: string | undefined;
    in_call: boolean;
    is_edit_mode: boolean;
    platform: string | undefined;
    section_index: number | null;
    section_list_id: string | null;
    settings: EmbeddableProps["settings"] | null;
    used_in_section: CanvasSection | null;
    user: User | null;
    width: string | undefined;
}

Type declaration

  • canvas: CanvasRetrieve

    Canvas data

  • client: string | null

    Client name

  • component_id: string

    Component ID

  • display_mode: string | undefined

    Display mode

  • height: string | undefined

    Height of the canvas

  • in_call: boolean

    Call status

  • is_edit_mode: boolean

    Edit mode status

  • platform: string | undefined

    Platform name

  • section_index: number | null

    Section index in section list

  • section_list_id: string | null

    Section list ID

  • settings: EmbeddableProps["settings"] | null

    Embeddable settings

  • used_in_section: CanvasSection | null

    Section used in canvas

  • user: User | null

    User information

  • width: string | undefined

    Width of the canvas