@edgible-team/sdk
    Preparing search index...

    Interface ApplicationAccessDecisionsPage

    One page of an application's access-decision events (gateway-security C5 / GS-7), returned newest-first by GET /applications/{id}/access-decisions. nextCursor is an opaque token; absent when there are no more pages.

    interface ApplicationAccessDecisionsPage {
        decisions: AccessDecisionRecord[];
        nextCursor?: string;
    }
    Index

    Properties

    decisions: AccessDecisionRecord[]
    nextCursor?: string