Module Values_0.ContactFlowSearchCriteria

The search criteria to be used to return flows.

Sourcetype nonrec t = {
  1. orConditions : ContactFlowSearchConditionList.t option;
    (*

    A list of conditions which would be applied together with an OR condition.

    *)
  2. andConditions : ContactFlowSearchConditionList.t option;
    (*

    A list of conditions which would be applied together with an AND condition.

    *)
  3. stringCondition : StringCondition.t option;
  4. typeCondition : ContactFlowType.t option;
    (*

    The type of flow.

    *)
  5. stateCondition : ContactFlowState.t option;
    (*

    The state of the flow.

    *)
  6. statusCondition : ContactFlowStatus.t option;
    (*

    The status of the flow.

    *)
}
Sourceval make : ?orConditions:ContactFlowSearchConditionList.t -> ?andConditions:ContactFlowSearchConditionList.t -> ?stringCondition:StringCondition.t -> ?typeCondition:ContactFlowType.t -> ?stateCondition:ContactFlowState.t -> ?statusCondition:ContactFlowStatus.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t