Show / Hide Table of Contents

Class Volume.SaleInfoData.OffersData

Offers available for this volume (sales and rentals).

Inheritance
System.Object
Volume.SaleInfoData.OffersData
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.Books.v1.Data
Assembly: Google.Apis.Books.v1.dll
Syntax
public class OffersData

Properties

FinskyOfferType

The finsky offer type (e.g., PURCHASE=0 RENTAL=3)

Declaration
[JsonProperty("finskyOfferType")]
public virtual int? FinskyOfferType { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Giftable

Indicates whether the offer is giftable.

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

ListPrice

Offer list (=undiscounted) price in Micros.

Declaration
[JsonProperty("listPrice")]
public virtual Volume.SaleInfoData.OffersData.ListPriceData ListPrice { get; set; }
Property Value
Type Description
Volume.SaleInfoData.OffersData.ListPriceData

RentalDuration

The rental duration (for rental offers only).

Declaration
[JsonProperty("rentalDuration")]
public virtual Volume.SaleInfoData.OffersData.RentalDurationData RentalDuration { get; set; }
Property Value
Type Description
Volume.SaleInfoData.OffersData.RentalDurationData

RetailPrice

Offer retail (=discounted) price in Micros

Declaration
[JsonProperty("retailPrice")]
public virtual Volume.SaleInfoData.OffersData.RetailPriceData RetailPrice { get; set; }
Property Value
Type Description
Volume.SaleInfoData.OffersData.RetailPriceData
In This Article
Back to top