Module Values.DestinationFieldPropertiesSource

The properties that can be applied to a field when connector is being used as a destination.

Sourcetype nonrec t = {
  1. isCreatable : Boolean.t option;
    (*

    Specifies if the destination field can be created by the current user.

    *)
  2. isNullable : Boolean.t option;
    (*

    Specifies if the destination field can have a null value.

    *)
  3. isUpsertable : Boolean.t option;
    (*

    Specifies if the flow run can either insert new rows in the destination field if they do not already exist, or update them if they do.

    *)
  4. isUpdatable : Boolean.t option;
    (*

    Specifies whether the field can be updated during an UPDATE or UPSERT write operation.

    *)
  5. isDefaultedOnCreate : Boolean.t option;
    (*

    Specifies whether the field can use the default value during a Create operation.

    *)
  6. supportedWriteOperations : SupportedWriteOperationList.t option;
    (*

    A list of supported write operations. For each write operation listed, this field can be used in idFieldNames when that write operation is present as a destination option.

    *)
}
Sourceval make : ?isCreatable:??? -> ?isNullable:??? -> ?isUpsertable:??? -> ?isUpdatable:??? -> ?isDefaultedOnCreate:??? -> ?supportedWriteOperations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Enum of string ] 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