Module Values.QueueSummarySource

The details of a queue summary.

Sourcetype nonrec t = {
  1. farmId : FarmId.t option;
    (*

    The farm ID.

    *)
  2. queueId : QueueId.t option;
    (*

    The queue ID.

    *)
  3. displayName : ResourceName.t option;
    (*

    The display name of the queue summary to update. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  4. status : QueueStatus.t option;
    (*

    That status of the queue.

    *)
  5. defaultBudgetAction : DefaultQueueBudgetAction.t option;
    (*

    The default action taken on a queue summary if a budget wasn't configured.

    *)
  6. blockedReason : QueueBlockedReason.t option;
    (*

    The reason the queue is blocked, if applicable.

    *)
  7. createdAt : CreatedAt.t option;
    (*

    The date and time the resource was created.

    *)
  8. createdBy : CreatedBy.t option;
    (*

    The user or system that created this resource.

    *)
  9. updatedAt : UpdatedAt.t option;
    (*

    The date and time the resource was updated.

    *)
  10. updatedBy : UpdatedBy.t option;
    (*

    The user or system that updated this resource.

    *)
}
Sourceval make : ?farmId:??? -> ?queueId:??? -> ?displayName:??? -> ?status:??? -> ?defaultBudgetAction:??? -> ?blockedReason:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FarmId.t | `Timestamp of CreatedAt.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