Module Values.MemberFeaturesConfigurationResultSource

Contains information about the features for the member account.

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

    Indicates the name of the feature that is enabled for the detector.

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

    Indicates the status of the feature that is enabled for the detector.

    *)
  3. updatedAt : Timestamp.t option;
    (*

    The timestamp at which the feature object was updated.

    *)
  4. additionalConfiguration : MemberAdditionalConfigurationResults.t option;
    (*

    Indicates the additional configuration of the feature that is configured for the member account.

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