Module Values.MemberFeaturesConfigurationSource

Contains information about the features for the member account.

Sourcetype nonrec t = {
  1. name : OrgFeature.t option;
    (*

    The name of the feature.

    *)
  2. status : FeatureStatus.t option;
    (*

    The status of the feature.

    *)
  3. additionalConfiguration : MemberAdditionalConfigurations.t option;
    (*

    Additional configuration of the feature for the member account.

    *)
}
Sourceval make : ?name:??? -> ?status:??? -> ?additionalConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string ]) list ] list ]) 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