Module Values_2.MappingEntrySource

Defines a mapping.

Sourcetype nonrec t = {
  1. sourceTable : Values_1.TableName.t option;
    (*

    The name of the source table.

    *)
  2. sourcePath : SchemaPathString.t option;
    (*

    The source path.

    *)
  3. sourceType : Values_1.FieldType.t option;
    (*

    The source type.

    *)
  4. targetTable : Values_1.TableName.t option;
    (*

    The target table.

    *)
  5. targetPath : SchemaPathString.t option;
    (*

    The target path.

    *)
  6. targetType : Values_1.FieldType.t option;
    (*

    The target type.

    *)
}
Sourceval make : ?sourceTable:??? -> ?sourcePath:??? -> ?sourceType:??? -> ?targetTable:??? -> ?targetPath:??? -> ?targetType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_1.TableName.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