interface AuthorizationJSON {
    resource: string;
    actions: {
        [key: string]: string;
    };
    attributes: {
        [key: string]: string;
    };
    advices: null | Advices;
    ttl: number;
}

Properties

resource: string
actions: {
    [key: string]: string;
}

Type declaration

  • [key: string]: string
attributes: {
    [key: string]: string;
}

Type declaration

  • [key: string]: string
advices: null | Advices
ttl: number