-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #167 from recurly/v3-v2019-10-10-1630513315
Generated Latest Changes for v2019-10-10 (Dunning Campaigns feature)
- Loading branch information
Showing
16 changed files
with
1,182 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
src/main/java/com/recurly/v3/requests/DunningCampaignsBulkUpdate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/** | ||
* 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.util.List; | ||
|
||
public class DunningCampaignsBulkUpdate extends Request { | ||
|
||
/** | ||
* List of `plan_codes` associated with the Plans for which the dunning campaign should be | ||
* updated. Required unless `plan_ids` is present. | ||
*/ | ||
@SerializedName("plan_codes") | ||
@Expose | ||
private List<String> planCodes; | ||
|
||
/** | ||
* List of `plan_ids` associated with the Plans for which the dunning campaign should be updated. | ||
* Required unless `plan_codes` is present. | ||
*/ | ||
@SerializedName("plan_ids") | ||
@Expose | ||
private List<String> planIds; | ||
|
||
/** | ||
* List of `plan_codes` associated with the Plans for which the dunning campaign should be | ||
* updated. Required unless `plan_ids` is present. | ||
*/ | ||
public List<String> getPlanCodes() { | ||
return this.planCodes; | ||
} | ||
|
||
/** | ||
* @param planCodes List of `plan_codes` associated with the Plans for which the dunning campaign | ||
* should be updated. Required unless `plan_ids` is present. | ||
*/ | ||
public void setPlanCodes(final List<String> planCodes) { | ||
this.planCodes = planCodes; | ||
} | ||
|
||
/** | ||
* List of `plan_ids` associated with the Plans for which the dunning campaign should be updated. | ||
* Required unless `plan_codes` is present. | ||
*/ | ||
public List<String> getPlanIds() { | ||
return this.planIds; | ||
} | ||
|
||
/** | ||
* @param planIds List of `plan_ids` associated with the Plans for which the dunning campaign | ||
* should be updated. Required unless `plan_codes` is present. | ||
*/ | ||
public void setPlanIds(final List<String> planIds) { | ||
this.planIds = planIds; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.