kustomer-client
    Preparing search index...

    Type Alias GetAllRoleGroupsResponses

    type GetAllRoleGroupsResponses = {
        "200": {
            data: {
                attributes: {
                    createdAt: string;
                    description: string;
                    display: boolean;
                    name: string;
                    roles: string[];
                    system: boolean;
                    updatedAt: string;
                };
                id: string;
                relationships: {
                    org: { data: { id: string; type: string }; links: { self: string } };
                };
                type: string;
            }[];
            links: {
                first: string;
                next: string
                | null;
                prev: string | null;
                self: string;
            };
            meta: { page: number; pageSize: number };
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            attributes: {
                createdAt: string;
                description: string;
                display: boolean;
                name: string;
                roles: string[];
                system: boolean;
                updatedAt: string;
            };
            id: string;
            relationships: {
                org: { data: { id: string; type: string }; links: { self: string } };
            };
            type: string;
        }[];
        links: {
            first: string;
            next: string
            | null;
            prev: string | null;
            self: string;
        };
        meta: { page: number; pageSize: number };
    }

    OK