Show / Hide Table of Contents

Class SubscriptionDeferralInfo

A SubscriptionDeferralInfo contains the data needed to defer a subscription purchase to a future expiry time.

Inheritance
System.Object
SubscriptionDeferralInfo
Implements
IDirectResponseSchema
Namespace: Google.Apis.AndroidPublisher.v2.Data
Assembly: Google.Apis.AndroidPublisher.v2.dll
Syntax
public class SubscriptionDeferralInfo : object, IDirectResponseSchema

Properties

DesiredExpiryTimeMillis

The desired next expiry time to assign to the subscription, in milliseconds since the Epoch. The given time must be later/greater than the current expiry time for the subscription.

Declaration
public virtual Nullable<long> DesiredExpiryTimeMillis { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ETag

The ETag of the item.

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

ExpectedExpiryTimeMillis

The expected expiry time for the subscription. If the current expiry time for the subscription is not the value specified here, the deferral will not occur.

Declaration
public virtual Nullable<long> ExpectedExpiryTimeMillis { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
Back to top