import type { PublicKeyCredentialJson } from './PublicKeyCredentialJson'; /** * @type RegistrationFinishRequest: * * @property client_id: The ID of the OAuth client. * - **Max Length:** 36 * * @property username: Username for the credential. * - **Max Length:** 128 * * @property credential: * * @property channel_id: The ID of the channel. * - **Max Length:** 128 * * @property pwd_action_token: Password action token. The token length is either 6 or 8 digits, configurable in SLAS Admin. * - **Pattern:** /^[0-9]{6,8}$/ * - **Max Length:** 8 * */ export type RegistrationFinishRequest = { client_id: string; username: string; credential: PublicKeyCredentialJson; channel_id: string; pwd_action_token: string; } & { [key: string]: any; };