UNPKG

@realestate/types

Version:

Types for real estate

232 lines (197 loc) 5.03 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 Roof { /** * {@link https://ddwiki.reso.org/display/DDW17/Aluminum} * * The roof is made wholly/partially of aluminum. */ Aluminum = 'Aluminum', /** * {@link https://ddwiki.reso.org/display/DDW17/Asbestos+Shingle} * * The roof is made wholly/partially of asbestos shingles. */ AsbestosShingle = 'AsbestosShingle', /** * The roof is made wholly/partially of asphalt. */ Asphalt = 'Asphalt', /** * {@link https://ddwiki.reso.org/display/DDW17/Bahama} * * The roof is a Bahama roof. */ Bahama = 'Bahama', /** * {@link https://ddwiki.reso.org/display/DDW17/Barrel} * * The roof is a Barrel roof. */ Barrel = 'Barrel', /** * {@link https://ddwiki.reso.org/display/DDW17/Bituthene} * * The roof is made wholly/partially of Bituthene. */ Bituthene = 'Bituthene', /** * {@link https://ddwiki.reso.org/display/DDW17/Built-Up} * * The roof is made wholly/partially of built-up. */ BuiltUp = 'BuiltUp', /** * {@link https://ddwiki.reso.org/display/DDW17/Composition} * * The roof is made wholly/partially of composition. */ Composition = 'Composition', /** * The roof is made wholly/partially of concrete. */ Concrete = 'Concrete', /** * {@link https://ddwiki.reso.org/display/DDW17/Copper} * * The roof is made wholly/partially of copper. */ Copper = 'Copper', /** * {@link https://ddwiki.reso.org/display/DDW17/Elastomeric} * * The roof is made wholly/partially of elastomeric. */ Elastomeric = 'Elastomeric', /** * {@link https://ddwiki.reso.org/display/DDW17/Fiberglass} * * The roof is made wholly/partially of fiberglass. */ Fiberglass = 'Fiberglass', /** * {@link https://ddwiki.reso.org/display/DDW17/Flat} * * The roof is wholly/partially flat. */ Flat = 'Flat', /** * {@link https://ddwiki.reso.org/display/DDW17/Flat+Tile} * * The roof is made wholly/partially of flat tile. */ FlatTile = 'FlatTile', /** * {@link https://ddwiki.reso.org/display/DDW17/Foam} * * The roof is made wholly/partially of foam. */ Foam = 'Foam', /** * {@link https://ddwiki.reso.org/display/DDW17/Green+Roof} * * The roof is wholly/partially a green roof. */ GreenRoof = 'GreenRoof', /** * {@link https://ddwiki.reso.org/display/DDW17/Mansard} * * The roof is made wholly/partially of mansard. */ Mansard = 'Mansard', /** * {@link https://ddwiki.reso.org/display/DDW17/Membrane} * * The roof is made wholly/partially of membrane. */ Membrane = 'Membrane', /** * {@link https://ddwiki.reso.org/display/DDW17/Metal} * * The roof is made wholly/partially of metal. */ Metal = 'Metal', /** * The roof is made wholly/partially of mixed materials. */ Mixed = 'Mixed', /** * The roof materials are unstated, unknown or there are none. */ None = 'None', /** * The roof is made wholly/partially of materials other than those in this list. */ Other = 'Other', /** * The roof is made wholly/partially of rolled/hot mop. */ RolledHotMop = 'RolledHotMop', /** * {@link https://ddwiki.reso.org/display/DDW17/Rubber} * * The roof is made wholly/partially of rubber. */ Rubber = 'Rubber', /** * See the listing's remarks for details on the roof. */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/Shake} * * The roof is made wholly/partially of shake. */ Shake = 'Shake', /** * {@link https://ddwiki.reso.org/display/DDW17/Shingle} * * The roof is made wholly/partially of shingle. */ Shingle = 'Shingle', /** * {@link https://ddwiki.reso.org/display/DDW17/Slate} * * The roof is made wholly/partially of slate. */ Slate = 'Slate', /** * {@link https://ddwiki.reso.org/display/DDW17/Spanish+Tile} * * The roof is made wholly/partially of Spanish tile. */ SpanishTile = 'SpanishTile', /** * The roof is made wholly/partially of stone. */ Stone = 'Stone', /** * {@link https://ddwiki.reso.org/display/DDW17/Synthetic} * * The roof is made wholly/partially of synthetic materials. */ Synthetic = 'Synthetic', /** * The roof is made wholly/partially of tar/gravel. */ TarGravel = 'TarGravel', /** * {@link https://ddwiki.reso.org/display/DDW17/Tile} * * The roof is made wholly/partially of tile. */ Tile = 'Tile', /** * {@link https://ddwiki.reso.org/display/DDW17/Wood} * * The roof is made wholly/partially of wood. */ Wood = 'Wood', }