Module Values.CustomAttributeSource

Defines the X.500 relative distinguished name (RDN).

Sourcetype nonrec t = {
  1. objectIdentifier : String_.t option;
    (*

    Specifies the object identifier (OID) of the attribute type of the relative distinguished name (RDN).

    *)
  2. value : String_.t option;
    (*

    Specifies the attribute value of relative distinguished name (RDN).

    *)
}
Sourceval make : ?objectIdentifier:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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