@archastro/sdk
    Preparing search index...

    Variable slackChannelBindingListResponseSchemaConst

    slackChannelBindingListResponseSchema: ZodObject<
        {
            data: ZodArray<
                ZodObject<
                    {
                        agents: ZodOptional<ZodArray<ZodString, "many">>;
                        channel: ZodOptional<ZodString>;
                        customer_label: ZodOptional<ZodString>;
                        id: ZodString;
                        integration: ZodOptional<ZodString>;
                        is_ext_shared_cached: ZodOptional<ZodBoolean>;
                        team: ZodOptional<ZodString>;
                    },
                    "strip",
                    ZodTypeAny,
                    {
                        agents?: string[];
                        channel?: string;
                        customer_label?: string;
                        id: string;
                        integration?: string;
                        is_ext_shared_cached?: boolean;
                        team?: string;
                    },
                    {
                        agents?: string[];
                        channel?: string;
                        customer_label?: string;
                        id: string;
                        integration?: string;
                        is_ext_shared_cached?: boolean;
                        team?: string;
                    },
                >,
                "many",
            >;
            page: ZodNumber;
            per_page: ZodNumber;
            total_count: ZodNumber;
            total_pages: ZodNumber;
        },
        "strip",
        ZodTypeAny,
        {
            data: {
                agents?: string[];
                channel?: string;
                customer_label?: string;
                id: string;
                integration?: string;
                is_ext_shared_cached?: boolean;
                team?: string;
            }[];
            page: number;
            per_page: number;
            total_count: number;
            total_pages: number;
        },
        {
            data: {
                agents?: string[];
                channel?: string;
                customer_label?: string;
                id: string;
                integration?: string;
                is_ext_shared_cached?: boolean;
                team?: string;
            }[];
            page: number;
            per_page: number;
            total_count: number;
            total_pages: number;
        },
    > = ...

    Runtime validator for SlackChannelBindingListResponse.