@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 426 B
TypeScript
import { LogTokenDetails } from './LogTokenDetails';
/** specific fields for TOKEN_DELETED events */
export interface LogTokenDeletedDetails {
/** Token details before deletion */
old?: LogTokenDetails;
/** Token's creation date */
tokenCreatedAt?: string;
/** Name of the token */
tokenName: string;
/** Login of the user */
user: string;
}
//# sourceMappingURL=LogTokenDeletedDetails.d.ts.map