Module GapiGmailV1Model.SmtpMsa

type t = {
host : string;(*

The hostname of the SMTP service. Required.

*)
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.

*)
port : int;(*

The port of the SMTP service. Required.

*)
securityMode : string;(*

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

*)
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