com.xsolla.sdk.Subscription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
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;
}
}