Show / Hide Table of Contents

Class PaygateInfo

Information provided to clients so that they can show upgrade promos and warnings on call ending early (for non-paying users).

Inheritance
System.Object
PaygateInfo
Implements
Google.Apis.Requests.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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class PaygateInfo : IDirectResponseSchema

Properties

CallEndingSoonWarningTime

Time when client should show message that the call is ending soon.

Declaration
[JsonProperty("callEndingSoonWarningTime")]
public virtual object CallEndingSoonWarningTime { get; set; }
Property Value
Type Description
System.Object

CallEndingTime

Time when the call will end if the user does not upgrade (after in-call upgrade support check has been implemented).

Declaration
[JsonProperty("callEndingTime")]
public virtual object CallEndingTime { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

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

ShowUpgradePromos

This boolean is used by clients to decide whether the user should be shown promos to upgrade.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top