All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xsolla.sdk.Subscription Maven / Gradle / Ivy

Go to download

An official PHP SDK for interacting with Xsolla HTTP API. Xsolla is the authorized reseller and merchant providing e-commerce services for online games.

The newest version!
package com.xsolla.sdk;

public class Subscription {

    protected int id;
    protected String type;
    protected String name;
    protected String currency;

    public Subscription(int id, String name, String type, String currency) {
        this.id = id;
        this.name = name;
        this.type = type;
        this.currency = currency;
    }

    public String getCurrency() {
        return currency;
    }

    public int getId() {
        return id;
    }

    public String getType() {
        return type;
    }

    public String getName() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy