import { SdPlatformApiTokenScopes } from "../commons/SdPlatformApiTokenScopes"; /** * DTO for creating an API token */ export interface SdPlatformRequestApiTokenCreate { /** mandatory description of the API token */ description: string; /** scopes which the API token shall be limited to */ scope: Array; /** epoch timestamp until which the API token shall be valid */ valid_until?: number; } /** * DTO for patching an API token */ export interface SdPlatformRequestApiTokenPatch { /** description of the API token */ description?: string; /** epoch timestamp until which the API token shall be valid */ valid_until?: number | null; /** activate or deactivate the API token */ active?: boolean; } //# sourceMappingURL=SdPlatformRequestApiToken.d.ts.map