-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSubscriptionRampInterval.java
More file actions
45 lines (37 loc) · 1.51 KB
/
SubscriptionRampInterval.java
File metadata and controls
45 lines (37 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* This file is automatically created by Recurly's OpenAPI generation process and thus any edits you
* make by hand will be lost. If you wish to make a change to this file, please create a Github
* issue explaining the changes you need and we will usher them to the appropriate places.
*/
package com.recurly.v3.requests;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import com.recurly.v3.Request;
import com.recurly.v3.resources.*;
import java.math.BigDecimal;
public class SubscriptionRampInterval extends Request {
/** Represents the billing cycle where a ramp interval starts. */
@SerializedName("starting_billing_cycle")
@Expose
private Integer startingBillingCycle;
/** Represents the price for the ramp interval. */
@SerializedName("unit_amount")
@Expose
private BigDecimal unitAmount;
/** Represents the billing cycle where a ramp interval starts. */
public Integer getStartingBillingCycle() {
return this.startingBillingCycle;
}
/** @param startingBillingCycle Represents the billing cycle where a ramp interval starts. */
public void setStartingBillingCycle(final Integer startingBillingCycle) {
this.startingBillingCycle = startingBillingCycle;
}
/** Represents the price for the ramp interval. */
public BigDecimal getUnitAmount() {
return this.unitAmount;
}
/** @param unitAmount Represents the price for the ramp interval. */
public void setUnitAmount(final BigDecimal unitAmount) {
this.unitAmount = unitAmount;
}
}