Module Values.ImportedSidewalkDeviceSource

Information about a Sidewalk device that has been added to an import task.

Sourcetype nonrec t = {
  1. sidewalkManufacturingSn : SidewalkManufacturingSn.t option;
    (*

    The Sidewalk manufacturing serial number (SMSN) of the Sidewalk device.

    *)
  2. onboardingStatus : OnboardStatus.t option;
    (*

    The onboarding status of the Sidewalk device in the import task.

    *)
  3. onboardingStatusReason : OnboardStatusReason.t option;
    (*

    The reason for the onboarding status information for the Sidewalk device.

    *)
  4. lastUpdateTime : LastUpdateTime.t option;
    (*

    The time at which the status information was last updated.

    *)
}
Sourceval make : ?sidewalkManufacturingSn:??? -> ?onboardingStatus:??? -> ?onboardingStatusReason:??? -> ?lastUpdateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SidewalkManufacturingSn.t | `Timestamp of LastUpdateTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t