Module Values.EphemerisMetaDataSource

Metadata describing a particular ephemeris.

Sourcetype nonrec t = {
  1. source : EphemerisSource.t option;
    (*

    The EphemerisSource that generated a given ephemeris.

    *)
  2. ephemerisId : Uuid.t option;
    (*

    UUID of a customer-provided ephemeris. This field is not populated for default ephemerides from Space Track.

    *)
  3. epoch : Timestamp.t option;
    (*

    The epoch of a default, ephemeris from Space Track in UTC. This field is not populated for customer-provided ephemerides.

    *)
  4. name : SafeName.t option;
    (*

    A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris. A name is only returned for customer-provider ephemerides that have a name associated.

    *)
}
Sourceval make : ?source:??? -> ?ephemerisId:??? -> ?epoch:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Uuid.t | `Timestamp of Timestamp.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