-
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.
Generated Latest Changes for v2021-02-25
- Loading branch information
Recurly Integrations
authored
Jul 2, 2024
1 parent
a45fa73
commit a703b57
Showing
15 changed files
with
1,547 additions
and
90 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* 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') | ||
|
||
/** | ||
* GeneralLedgerAccount | ||
* @typedef {Object} GeneralLedgerAccount | ||
* @prop {string} accountType | ||
* @prop {string} code - Unique code to identify the ledger account. Each code must start with a letter or number. The following special characters are allowed: `-_.,:` | ||
* @prop {Date} createdAt - Created at | ||
* @prop {string} description - Optional description. | ||
* @prop {string} id - The ID of a general ledger account. General ledger accounts are only accessible as a part of the Recurly RevRec Standard and Recurly RevRec Advanced features. | ||
* @prop {string} object - Object type | ||
* @prop {Date} updatedAt - Last updated at | ||
*/ | ||
class GeneralLedgerAccount extends Resource { | ||
static getSchema () { | ||
return { | ||
accountType: String, | ||
code: String, | ||
createdAt: Date, | ||
description: String, | ||
id: String, | ||
object: String, | ||
updatedAt: Date | ||
} | ||
} | ||
} | ||
|
||
module.exports = GeneralLedgerAccount |
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.