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