package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. host : string;
    (*

    The hostname of the SMTP service. Required.

    *)
  2. password : string;
    (*

    The password that will be used for authentication with the SMTP service. This is a write-only field that can be specified in requests to create or update SendAs settings; it is never populated in responses.

    *)
  3. port : int;
    (*

    The port of the SMTP service. Required.

    *)
  4. securityMode : string;
    (*

    The protocol that will be used to secure communication with the SMTP service. Required.

    *)
  5. username : string;
    (*

    The username that will be used for authentication with the SMTP service. This is a write-only field that can be specified in requests to create or update SendAs settings; it is never populated in responses.

    *)
}
val host : (t, string) GapiLens.t
val password : (t, string) GapiLens.t
val port : (t, int) GapiLens.t
val securityMode : (t, string) GapiLens.t
val username : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t