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

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

There is a newer version: 28.2.0
Show newest version
package com.stripe.model;


public class Discount extends StripeObject {
	String id;
	String object;
	Coupon coupon;
	String customer;
	Long end;
	Long start;
	String subscription;

	public String getId() {
		return id;
	}

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

	public String getObject() {
		return object;
	}

	public void setObject(String object) {
		this.object = object;
	}

	public Coupon getCoupon() {
		return coupon;
	}

	public void setCoupon(Coupon coupon) {
		this.coupon = coupon;
	}

	public String getCustomer() {
		return customer;
	}

	public void setCustomer(String customer) {
		this.customer = customer;
	}

	public Long getEnd() {
		return end;
	}

	public void setEnd(Long end) {
		this.end = end;
	}

	public Long getStart() {
		return start;
	}

	public void setStart(Long start) {
		this.start = start;
	}

	public String getSubscription() {
		return subscription;
	}

	public void setSubscription(String subscription) {
		this.subscription = subscription;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy