BDFenceInfo

Objective-C

@interface BDFenceInfo : NSObject <BDPSpatialObjectInfo, NSSecureCoding>

Swift

class BDFenceInfo : NSObject, BDPSpatialObjectInfo, NSSecureCoding

Information about a geofence, as defined in Canvas.

  • The name of this Fence that was entered into Canvas

    Declaration

    Objective-C

    @property (copy, readonly) NSString *name;

    Swift

    var name: String! { get }
  • The description of this Fence that was entered into Canvas

    Declaration

    Objective-C

    @property (copy, readonly) NSString *description;

    Swift

    var description: String! { get }
  • ID

    The description of this ID of the fence

    Declaration

    Objective-C

    @property (copy, readonly) NSString *ID;

    Swift

    var id: String! { get }
  • The geometry of this Fence that was defined in Canvas This property conforms the spatial aspect of BDFenceInfo to a common interface BDPSpatialObjectInfo.

    Declaration

    Objective-C

    @property (readonly) BDGeometry *geometry;

    Swift

    var geometry: BDGeometry! { get }