import { Scope, Scope__Output } from './Scope';

interface ClientApproval {
    'id'?: (string);
    'userId'?: (string);
    'clientId'?: (string);
    'scopes'?: (Scope)[];
    'createdAt'?: (string);
    'deletedAt'?: (string);
    'updatedAt'?: (string);
}
interface ClientApproval__Output {
    'id': (string);
    'userId': (string);
    'clientId': (string);
    'scopes': (Scope__Output)[];
    'createdAt': (string);
    'deletedAt': (string);
    'updatedAt': (string);
}

export { ClientApproval, ClientApproval__Output };
