-
Notifications
You must be signed in to change notification settings - Fork 10
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 #308 from recurly/v3-v2021-02-25-1684878505
Generated Latest Changes for v2021-02-25 (External Products & References)
- Loading branch information
Showing
6 changed files
with
579 additions
and
2 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
31 changes: 31 additions & 0 deletions
31
lib/recurly/resources/ExternalProductReferenceCollection.js
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,31 @@ | ||
/* istanbul ignore file */ | ||
/** | ||
* 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. | ||
*/ | ||
'use strict' | ||
|
||
const Resource = require('../Resource') | ||
|
||
/** | ||
* ExternalProductReferenceCollection | ||
* @typedef {Object} ExternalProductReferenceCollection | ||
* @prop {Array.<ExternalProductReferenceMini>} data | ||
* @prop {boolean} hasMore - Indicates there are more results on subsequent pages. | ||
* @prop {string} next - Path to subsequent page of results. | ||
* @prop {string} object - Will always be List. | ||
*/ | ||
class ExternalProductReferenceCollection extends Resource { | ||
static getSchema () { | ||
return { | ||
data: ['ExternalProductReferenceMini'], | ||
hasMore: Boolean, | ||
next: String, | ||
object: String | ||
} | ||
} | ||
} | ||
|
||
module.exports = ExternalProductReferenceCollection |
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.