-
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.
Generated Latest Changes for v2021-02-25
- Loading branch information
Recurly Integrations
authored
Feb 3, 2025
1 parent
e4b93f5
commit f2e476f
Showing
8 changed files
with
269 additions
and
19 deletions.
There are no files selected for viewing
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
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/PaymentGatewayReferences.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.Constants; | ||
import com.recurly.v3.Request; | ||
import com.recurly.v3.resources.*; | ||
|
||
public class PaymentGatewayReferences extends Request { | ||
|
||
/** The type of reference token. Required if token is passed in for Stripe Gateway. */ | ||
@SerializedName("reference_type") | ||
@Expose | ||
private Constants.PaymentGatewayReferences referenceType; | ||
|
||
/** | ||
* Reference value used when the external token was created. If Stripe gateway is used, this value | ||
* will need to be accompanied by its reference_type. | ||
*/ | ||
@SerializedName("token") | ||
@Expose | ||
private String token; | ||
|
||
/** The type of reference token. Required if token is passed in for Stripe Gateway. */ | ||
public Constants.PaymentGatewayReferences getReferenceType() { | ||
return this.referenceType; | ||
} | ||
|
||
/** | ||
* @param referenceType The type of reference token. Required if token is passed in for Stripe | ||
* Gateway. | ||
*/ | ||
public void setReferenceType(final Constants.PaymentGatewayReferences referenceType) { | ||
this.referenceType = referenceType; | ||
} | ||
|
||
/** | ||
* Reference value used when the external token was created. If Stripe gateway is used, this value | ||
* will need to be accompanied by its reference_type. | ||
*/ | ||
public String getToken() { | ||
return this.token; | ||
} | ||
|
||
/** | ||
* @param token Reference value used when the external token was created. If Stripe gateway is | ||
* used, this value will need to be accompanied by its reference_type. | ||
*/ | ||
public void setToken(final String token) { | ||
this.token = token; | ||
} | ||
} |
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.