Example usage for com.badlogic.gdx.pay OfferType ENTITLEMENT

List of usage examples for com.badlogic.gdx.pay OfferType ENTITLEMENT

Introduction

In this page you can find the example usage for com.badlogic.gdx.pay OfferType ENTITLEMENT.

Prototype

OfferType ENTITLEMENT

To view the source code for com.badlogic.gdx.pay OfferType ENTITLEMENT.

Click Source Link

Document

An entitlement can only be purchased once (e.g.

Usage

From source file:com.badlogic.gdx.pay.android.googleplay.testdata.OfferObjectMother.java

public static Offer offerFullEditionEntitlement() {
    Offer offer = new Offer();
    offer.setIdentifier(PRODUCT_IDENTIFIER_FULL_EDITION);
    offer.setType(OfferType.ENTITLEMENT);
    return offer;
}