trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
12 lines (11 loc) • 457 B
TypeScript
import { BaseCollectionResponse } from './base-collection-response';
import { StateBodyStructure } from '../../../common/body-entities/responses';
/**
* StatesCollectionResponse class is responsible
* for deserializing the response from the metadata
* API to a collection of states.
*/
export declare class StatesCollectionResponse extends BaseCollectionResponse<StateBodyStructure> {
constructor(data?: unknown);
data?: StateBodyStructure[];
}