Variable $AuthSessionCredentialsDtoConst

$AuthSessionCredentialsDto: {
    properties: {
        access_token: {
            description: "Token de acesso.";
            nullable: true;
            type: "string";
        };
        expires_at: {
            description: "Tempo de expiração do token.";
            nullable: true;
            type: "integer";
        };
        expires_in: {
            description: "Tempo de expiração do token.";
            nullable: true;
            type: "integer";
        };
        id_token: {
            description: "Token de identificação.";
            nullable: true;
            type: "string";
        };
        refresh_token: {
            description: "Token de refresh.";
            nullable: true;
            type: "string";
        };
        scope: {
            description: "Escopo da autenticação.";
            nullable: true;
            type: "string";
        };
        session_state: {
            description: "Estado da sessão.";
            nullable: true;
            type: "string";
        };
        token_type: {
            description: "Tipo do token.";
            nullable: true;
            type: "string";
        };
    };
    required: readonly ["access_token", "token_type", "id_token", "refresh_token", "expires_in", "expires_at", "session_state", "scope"];
    type: "object";
} = ...