@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
19 lines • 519 B
TypeScript
import { ClientFlowEnum } from './ClientFlowEnum';
/** An oAuth2 Client */
export interface Client {
/** allowed callback urls */
callbackUrls?: string[];
/** client's client_id */
clientId: string;
/** client's creation date */
createdAt: string;
/** client's description */
description: string;
/** oAuth2's flow */
flow: ClientFlowEnum;
/** associated IAM identity */
identity?: string;
/** client's name */
name: string;
}
//# sourceMappingURL=Client.d.ts.map