-
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 #285 from recurly/v3-v2021-02-25-12325353567
Generated Latest Changes for v2021-02-25
- Loading branch information
Showing
20 changed files
with
1,651 additions
and
40 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
38 changes: 38 additions & 0 deletions
38
src/main/java/com/recurly/v3/requests/AccountExternalSubscription.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,38 @@ | ||
/** | ||
* 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.*; | ||
|
||
public class AccountExternalSubscription extends Request { | ||
|
||
/** | ||
* The account code of a new or existing account to be used when creating the external | ||
* subscription. | ||
*/ | ||
@SerializedName("account_code") | ||
@Expose | ||
private String accountCode; | ||
|
||
/** | ||
* The account code of a new or existing account to be used when creating the external | ||
* subscription. | ||
*/ | ||
public String getAccountCode() { | ||
return this.accountCode; | ||
} | ||
|
||
/** | ||
* @param accountCode The account code of a new or existing account to be used when creating the | ||
* external subscription. | ||
*/ | ||
public void setAccountCode(final String accountCode) { | ||
this.accountCode = accountCode; | ||
} | ||
} |
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
11 changes: 11 additions & 0 deletions
11
src/main/java/com/recurly/v3/requests/ExternalProductReferenceConnectionType.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,11 @@ | ||
/** | ||
* 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.recurly.v3.Request; | ||
import com.recurly.v3.resources.*; | ||
|
||
public class ExternalProductReferenceConnectionType extends Request {} |
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
57 changes: 57 additions & 0 deletions
57
src/main/java/com/recurly/v3/requests/ExternalProductReferenceUpdate.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,57 @@ | ||
/** | ||
* 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.*; | ||
|
||
public class ExternalProductReferenceUpdate extends Request { | ||
|
||
/** Represents the connection type. One of the connection types of your enabled App Connectors */ | ||
@SerializedName("external_connection_type") | ||
@Expose | ||
private ExternalProductReferenceConnectionType externalConnectionType; | ||
|
||
/** | ||
* A code which associates the external product to a corresponding object or resource in an | ||
* external platform like the Apple App Store or Google Play Store. | ||
*/ | ||
@SerializedName("reference_code") | ||
@Expose | ||
private String referenceCode; | ||
|
||
/** Represents the connection type. One of the connection types of your enabled App Connectors */ | ||
public ExternalProductReferenceConnectionType getExternalConnectionType() { | ||
return this.externalConnectionType; | ||
} | ||
|
||
/** | ||
* @param externalConnectionType Represents the connection type. One of the connection types of | ||
* your enabled App Connectors | ||
*/ | ||
public void setExternalConnectionType( | ||
final ExternalProductReferenceConnectionType externalConnectionType) { | ||
this.externalConnectionType = externalConnectionType; | ||
} | ||
|
||
/** | ||
* A code which associates the external product to a corresponding object or resource in an | ||
* external platform like the Apple App Store or Google Play Store. | ||
*/ | ||
public String getReferenceCode() { | ||
return this.referenceCode; | ||
} | ||
|
||
/** | ||
* @param referenceCode A code which associates the external product to a corresponding object or | ||
* resource in an external platform like the Apple App Store or Google Play Store. | ||
*/ | ||
public void setReferenceCode(final String referenceCode) { | ||
this.referenceCode = referenceCode; | ||
} | ||
} |
Oops, something went wrong.