interface ConsentDecision {
    createdAt: string;
    id: number;
    identifier: string;
    installedBy: null | ConsentUser;
    name: null | string;
    scopes: string[];
    status: ConsentStatus;
    updatedAt: string;
}

Properties

createdAt: string
id: number
identifier: string
installedBy: null | ConsentUser
name: null | string
scopes: string[]
updatedAt: string