Module Values.ReportSummarySource

Summary for report resource.

Sourcetype nonrec t = {
  1. id : ReportId.t option;
    (*

    Unique resource ID for the report resource.

    *)
  2. name : ShortStringAttribute.t option;
    (*

    Name for the report resource.

    *)
  3. state : PublishedState.t option;
    (*

    Current state of the report resource.

    *)
  4. arn : LongStringAttribute.t option;
    (*

    ARN for the report resource.

    *)
  5. version : VersionAttribute.t option;
    (*

    Version for the report resource.

    *)
  6. uploadState : UploadState.t option;
    (*

    The current state of the document upload.

    *)
  7. description : LongStringAttribute.t option;
    (*

    Description for the report resource.

    *)
  8. periodStart : TimestampAttribute.t option;
    (*

    Timestamp indicating the report resource effective start.

    *)
  9. periodEnd : TimestampAttribute.t option;
    (*

    Timestamp indicating the report resource effective end.

    *)
  10. series : ShortStringAttribute.t option;
    (*

    Series for the report resource.

    *)
  11. category : ShortStringAttribute.t option;
    (*

    Category for the report resource.

    *)
  12. companyName : ShortStringAttribute.t option;
    (*

    Associated company name for the report resource.

    *)
  13. productName : ShortStringAttribute.t option;
    (*

    Associated product name for the report resource.

    *)
  14. statusMessage : StatusMessage.t option;
    (*

    The message associated with the current upload state.

    *)
  15. acceptanceType : AcceptanceType.t option;
    (*

    Acceptance type for report.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?state:??? -> ?arn:??? -> ?version:??? -> ?uploadState:??? -> ?description:??? -> ?periodStart:??? -> ?periodEnd:??? -> ?series:??? -> ?category:??? -> ?companyName:??? -> ?productName:??? -> ?statusMessage:??? -> ?acceptanceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of VersionAttribute.t | `String of ReportId.t | `Timestamp of TimestampAttribute.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