@realestate/types
Version:
Types for real estate
89 lines (77 loc) • 2.08 kB
TypeScript
/**
* Copyright (c) 2023 ListBird. All Rights Reserved.
*
* This software product includes software or other works developed by RESO,
* subject to the RESO End User License published at www.reso.org.
*
* Any modifications, derivative works, or redistributions of this source must
* maintain this copyright notice. See the RESO EULA for more information.
*/
export enum FeeFrequency {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Annually}
*
* Fee is paid or received once a year.
*/
Annually = 'Annually',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Bi-Monthly}
*
* Fee is paid or received every other month.
*/
BiMonthly = 'BiMonthly',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Bi-Weekly}
*
* Fee is paid or received every other week.
*/
BiWeekly = 'BiWeekly',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Daily}
*
* Fee is paid or received daily.
*/
Daily = 'Daily',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Monthly}
*
* Fee is paid or received once a month.
*/
Monthly = 'Monthly',
/**
* {@link https://ddwiki.reso.org/display/DDW17/One+Time}
*
* Fee is paid or received once and is not reoccurring.
*/
OneTime = 'OneTime',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Quarterly}
*
* Fee is paid or received every three months.
*/
Quarterly = 'Quarterly',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Seasonal}
*
* Fee is paid or received seasonally.
*/
Seasonal = 'Seasonal',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Semi-Annually}
*
* Fee is paid or received twice a year.
*/
SemiAnnually = 'SemiAnnually',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Semi-Monthly}
*
* Fee is paid or received twice a month, generally on the 1st and 15th, but that may vary.
*/
SemiMonthly = 'SemiMonthly',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Weekly}
*
* Fee is paid or received weekly.
*/
Weekly = 'Weekly',
}