UNPKG

@jingbof/rets-client

Version:

RETS (Real Estate Transaction Standards) Client in Typescript

18 lines (17 loc) 272 B
/** * Count type for Search request */ export enum RetsQueryCountType { /** * Only return record */ OnlyRecord = 0, /** * Return both record and total count number */ Both = 1, /** * Only return total count number */ OnlyCountNumber = 2, }