com.arcbees.stripe.client.jso.CreditCardResponse Maven / Gradle / Ivy
The newest version!
package com.arcbees.stripe.client.jso;
import com.google.gwt.core.client.JavaScriptObject;
public class CreditCardResponse extends JavaScriptObject {
protected CreditCardResponse() {
}
public final native String getId() /*-{
return this.id;
}-*/;
public final native int getCreated() /*-{
return this.created;
}-*/;
public final native boolean getLiveMode() /*-{
return this.livemode;
}-*/;
public final native String getType() /*-{
return this.type;
}-*/;
public final native String getObject() /*-{
return this.object;
}-*/;
public final native boolean getUsed() /*-{
return this.used;
}-*/;
public final native Card getCard() /*-{
return this.card;
}-*/;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy