UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

11 lines 457 B
import { CredentialStateEnum } from './CredentialStateEnum'; /** Credential request to get access to the API */ export interface ApiCredentialRequest { /** Consumer Key to use for further authenticated calls */ consumerKey: string; /** State of the credential */ state: CredentialStateEnum; /** Address where to redirect the client to validate the access */ validationUrl: string; } //# sourceMappingURL=ApiCredentialRequest.d.ts.map