@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 373 B
TypeScript
import { ClientFlowEnum } from './ClientFlowEnum';
/** An oAuth2 Client Request */
export interface ClientRequest {
/** allowed callback urls */
callbackUrls: string[];
/** client's description */
description: string;
/** oAuth2's flow */
flow: ClientFlowEnum;
/** client's name */
name: string;
}
//# sourceMappingURL=ClientRequest.d.ts.map