13 lines
313 B
TypeScript
13 lines
313 B
TypeScript
export interface ApiTokenOut {
|
|
createdAt: Date;
|
|
expiresAt?: Date | null;
|
|
id: string;
|
|
name?: string | null;
|
|
scopes?: string[] | null;
|
|
token: string;
|
|
}
|
|
export declare const ApiTokenOutSerializer: {
|
|
_fromJsonObject(object: any): ApiTokenOut;
|
|
_toJsonObject(self: ApiTokenOut): any;
|
|
};
|