UNPKG

trade360-nodejs-sdk

Version:
12 lines (11 loc) 457 B
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[]; }