/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for IBL Call Pro authentication parameters. */ export type CallAuthenticationResponse = { /** * The WebSocket URL for the IBL Call Pro server */ ws_url: string; /** * The name of the IBL Call Pro room */ room_name: string; /** * The name of the participant joining the room */ participant_name: string; /** * The JWT token for authenticating the participant */ participant_token: string; };