Module Values_0.ContactFlowModuleSearchCriteria

The search criteria to be used to return flow modules.

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

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

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

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

    *)
  3. stringCondition : StringCondition.t option;
  4. stateCondition : ContactFlowModuleState.t option;
    (*

    The state of the flow.

    *)
  5. statusCondition : ContactFlowModuleStatus.t option;
    (*

    The status of the flow.

    *)
}
Sourceval make : ?orConditions:ContactFlowModuleSearchConditionList.t -> ?andConditions:ContactFlowModuleSearchConditionList.t -> ?stringCondition:StringCondition.t -> ?stateCondition:ContactFlowModuleState.t -> ?statusCondition:ContactFlowModuleStatus.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