interface OrganizationMembers {
    displayName: null | string;
    id: null | string;
    name: null | string;
    usage: null | string;
    getBranding(): null | {
        colors?: {
            pageBackground?: string;
            primary?: string;
        };
        logoUrl?: string;
    };
    getMetadata(): null | {
        [key: string]: string;
    };
}

Properties

displayName: null | string
id: null | string
name: null | string
usage: null | string

Methods

  • Returns null | {
        colors?: {
            pageBackground?: string;
            primary?: string;
        };
        logoUrl?: string;
    }