export interface SdPlatformRequestApiClientCreate { /** * Client application name */ client_name: string; /** * Client application secret (typically unused) */ client_secret?: string; /** * Should refresh tokens be used? */ refresh_token?: boolean; /** * Origins (domains) which the client application may connect from. */ allowed_origins?: Array; /** * Lifetime of access tokens issued to this client application in seconds. */ access_token_lifetime?: number; /** * Lifetime of refresh tokens issued to this client application in seconds. */ refresh_token_lifetime?: number; /** * The refresh token limit (how often can refresh tokens be used?) */ refresh_token_limit?: number; /** * The required feature. If this is set, the user must have this feature enabled in order to be allowed to sign in from this client. {@link SdPlatformResponseFeatureValues} */ required_feature: string; } export interface SdPlatformRequestApiClientPatch { /** * Client application name */ client_name?: string; /** * Client application secret (typically unused) */ client_secret?: string; /** * Should refresh tokens be used? */ refresh_token?: boolean; /** * Origins (domains) which the client application may connect from. */ allowed_origins?: Array; /** * Lifetime of access tokens issued to this client application in seconds. */ access_token_lifetime?: number; /** * Lifetime of refresh tokens issued to this client application in seconds. */ refresh_token_lifetime?: number; /** * The refresh token limit (how often can refresh tokens be used?) */ refresh_token_limit?: number; /** * The required feature. If this is set, the user must have this feature enabled in order to be allowed to sign in from this client. {@link SdPlatformResponseFeatureValues} */ required_feature: string; } //# sourceMappingURL=SdPlatformRequestApiClients.d.ts.map