Module Values.PropertyMappingConfigurationSource

Contains configuration options for mapping properties from an interface asset model to an asset model where the interface is applied.

Sourcetype nonrec t = {
  1. matchByPropertyName : MatchByPropertyName.t option;
    (*

    If true, properties are matched by name between the interface asset model and the asset model where the interface is applied.

    *)
  2. createMissingProperty : CreateMissingProperty.t option;
    (*

    If true, missing properties from the interface asset model are automatically created in the asset model where the interface is applied.

    *)
  3. overrides : PropertyMappings.t option;
    (*

    A list of specific property mappings that override the automatic mapping by name when an interface is applied to an asset model.

    *)
}
Sourceval make : ?matchByPropertyName:??? -> ?createMissingProperty:??? -> ?overrides:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of MatchByPropertyName.t | `List of [> `Structure of (string * [> `String of CustomID.t ]) 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