12 lines
221 B
Java
12 lines
221 B
Java
package it.acxent.bank.stripe;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
public class CreatePayment {
|
|
@SerializedName("items")
|
|
Object[] items;
|
|
|
|
public Object[] getItems() {
|
|
return this.items;
|
|
}
|
|
}
|