Module Values_1.DecimalNumberSource

Contains a numeric value in decimal format.

Sourcetype nonrec t = {
  1. unscaledValue : Values_0.Blob.t;
    (*

    The unscaled numeric value.

    *)
  2. scale : Values_0.Integer.t;
    (*

    The scale that determines where the decimal point falls in the unscaled value.

    *)
}
Sourceval context_ : string
Sourceval make : unscaledValue:Values_0.Blob.t -> scale:Values_0.Integer.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of Values_0.Blob.t | `Integer of Values_0.Integer.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