Show / Hide Table of Contents

Class AutoForwarding

Auto-forwarding settings for an account.

Inheritance
System.Object
AutoForwarding
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Gmail.v1.Data
Assembly: Google.Apis.Gmail.v1.dll
Syntax
public class AutoForwarding : IDirectResponseSchema

Properties

Disposition

The state that a message should be left in after it has been forwarded.

Declaration
[JsonProperty("disposition")]
public virtual string Disposition { get; set; }
Property Value
Type Description
System.String

EmailAddress

Email address to which all incoming messages are forwarded. This email address must be a verified member of the forwarding addresses.

Declaration
[JsonProperty("emailAddress")]
public virtual string EmailAddress { get; set; }
Property Value
Type Description
System.String

Enabled

Whether all incoming mail is automatically forwarded to another address.

Declaration
[JsonProperty("enabled")]
public virtual bool? Enabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top