trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
14 lines (13 loc) • 373 B
TypeScript
import { IdNNameRecord } from '../../../../entities/core-entities/common/index.js';
/**
* VenueBodyStructure class is responsible for
* deserializing the response from the metadata
* API to a venue.
*/
export declare class VenueBodyStructure {
venueId?: number;
name?: string;
country?: IdNNameRecord;
state?: IdNNameRecord;
city?: IdNNameRecord;
}