/* tslint:disable */ /* eslint-disable */ /** * Hathora Cloud API * Welcome to the Hathora Cloud API documentation! Learn how to use the Hathora Cloud APIs to build and scale your game servers globally. * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { exists, mapValues } from '../runtime'; /** * UserId or email address for the user that created the lobby. * @export * @interface LobbyCreatedBy */ export interface LobbyCreatedBy { } /** * Check if a given object implements the LobbyCreatedBy interface. */ export function instanceOfLobbyCreatedBy(value: object): boolean { let isInstance = true; return isInstance; } export function LobbyCreatedByFromJSON(json: any): LobbyCreatedBy { return LobbyCreatedByFromJSONTyped(json, false); } export function LobbyCreatedByFromJSONTyped(json: any, ignoreDiscriminator: boolean): LobbyCreatedBy { return json; } export function LobbyCreatedByToJSON(value?: LobbyCreatedBy | null): any { return value; }