com.stripe.model.EphemeralKeyAssociatedObject Maven / Gradle / Ivy
package com.stripe.model;
public class EphemeralKeyAssociatedObject extends StripeObject implements HasId {
String type;
String id;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy