Property

public class Property
extension Property: NativeBase
extension Property: Hashable

Holds information of varying types, such as Boolean, Integer, String. Properties are used in VenueModel VenueDrawing, VenueLevel and VenueGeometry to describe this objects.

  • The type of the property. It can be used to get type of property.

    Declaration

    Swift

    public var type: Property.PropertyType { get }
  • The Boolean value. Converts the value of the property to a boolean.

    Declaration

    Swift

    public var isBool: Bool { get }
  • int

    The Integer value. Converts the value of the property to a Integer.

    Declaration

    Swift

    public var int: Int32 { get }
  • The String value. Converts the value of the property to a boolean.

    Declaration

    Swift

    public var string: String { get }
  • Types of properties.

    See more

    Declaration

    Swift

    public enum PropertyType : UInt32, CaseIterable, Codable