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

com.stripe.model.ChargeOutcomeRule Maven / Gradle / Ivy

There is a newer version: 26.13.0-beta.1
Show newest version
package com.stripe.model;

public class ChargeOutcomeRule extends StripeObject implements HasId {
	protected String action;
	protected String id;
	protected String predicate;

	public String getAction() {
		return action;
	}

	public String getId() {
		return id;
	}

	public String getPredicate() {
		return predicate;
	}

	public void setAction(String action) {
		this.action = action;
	}

	public void setId(String id) {
		this.id = id;
	}

	public void setPredicate(String predicate) {
		this.predicate = predicate;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy