Module Values.DescribeConnectorEntityResponseSource

Provides details regarding the entity used with the connector, with a description of the data model for each field in that entity.

Sourcetype nonrec t = {
  1. connectorEntityFields : ConnectorEntityFieldList.t option;
    (*

    Describes the fields for that connector entity. For example, for an account entity, the fields would be account name, account ID, and so on.

    *)
}
Sourcetype nonrec error = [
  1. | `ConnectorAuthenticationException of ConnectorAuthenticationException.t
  2. | `ConnectorServerException of ConnectorServerException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?connectorEntityFields:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConnectorAuthenticationException of ConnectorAuthenticationException.t | `ConnectorServerException of ConnectorServerException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConnectorAuthenticationException of ConnectorAuthenticationException.t | `ConnectorServerException of ConnectorServerException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `String of CustomPropertyKey.t ] * [> `String of CustomPropertyValue.t ]) list | `String of Identifier.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Enum of string ] list | `Structure of (string * [> `List of [> `Enum of string | `String of Value.t ] list | `String of FieldType.t | `Structure of (string * [> `Double of Double.t ]) list ]) list ]) list ]) 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