UNPKG

@realestate/types

Version:

Types for real estate

57 lines (49 loc) 1.49 kB
/** * 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 BodyType { /** * {@link https://ddwiki.reso.org/display/DDW17/Double+Wide} * * The body/structure type of the mobile/manufacture home is double wide. */ DoubleWide = 'DoubleWide', /** * {@link https://ddwiki.reso.org/display/DDW17/Expando} * * The body/structure type of the mobile/manufacture home is Expando. */ Expando = 'Expando', /** * A body type not included in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Quad+Wide} * * The body/structure type of the mobile/manufacture home is quad wide. */ QuadWide = 'QuadWide', /** * The body/structure type of the mobile/manufacture home is see remarks. */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/Single+Wide} * * The body/structure type of the mobile/manufacture home is single wide. */ SingleWide = 'SingleWide', /** * {@link https://ddwiki.reso.org/display/DDW17/Triple+Wide} * * The body/structure type of the mobile/manufacture home is triple wide. */ TripleWide = 'TripleWide', }