-
Notifications
You must be signed in to change notification settings - Fork 1
Feat/support payment splitting #38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
09f8c44
feat: support payment splitting
AbdulazizAlrabiah 9645d77
docs: add splitting docs
AbdulazizAlrabiah 96ee0db
docs: staging url
AbdulazizAlrabiah e7d4e58
docs: enhance
AbdulazizAlrabiah 2113a29
fix: add filtering baseUrl slashes
AbdulazizAlrabiah e783921
feat: add assertion
AbdulazizAlrabiah 3c5dee5
fix: add filtering baseUrl slashes to token request
AbdulazizAlrabiah b50d4a0
docs: add explanatory docs
AbdulazizAlrabiah File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,61 @@ | ||
| /** | ||
| * @param splits - Optional array of `PaymentSplit` object used to distribute the charged amount (in the smallest currency unit) among multiple recipients or to collect a platform fee. | ||
| * - Each split requires `recipientId` and `amount` parameters. | ||
| * - `reference` and `description` parameters are optional. | ||
| * - Set `feeSource = true` parameter to mark the split as a fee/commission taken by the platform. | ||
| * - Set `refundable` parameter to control whether a split amount is refundable (`true`/`false`). Leave it to use the backend's default. | ||
| * - Set the `publishableApiKey` parameter to "pk_test_uQra5pwtUo9GaenMSS4XgfAmeLhmjUTJwFdXJxsH" and set the `baseUrl` parameter to "https://apimig.moyasar.com" for staging testing. | ||
| */ | ||
| export class PaymentSplit { | ||
| public recipientId: string; | ||
| public amount: number; | ||
| public reference?: string | null; | ||
| public description?: string | null; | ||
| public feeSource?: boolean | null; | ||
| public refundable?: boolean | null; | ||
|
|
||
| constructor({ | ||
| recipientId, | ||
| amount, | ||
| reference, | ||
| description, | ||
| feeSource, | ||
| refundable, | ||
| }: { | ||
| recipientId: string; | ||
| amount: number; | ||
| reference?: string | null; | ||
| description?: string | null; | ||
| feeSource?: boolean | null; | ||
| refundable?: boolean | null; | ||
| }) { | ||
| this.recipientId = recipientId; | ||
| this.amount = amount; | ||
| this.reference = reference; | ||
| this.description = description; | ||
| this.feeSource = feeSource; | ||
| this.refundable = refundable; | ||
| } | ||
|
|
||
| toJson(): Record<string, any> { | ||
| return { | ||
| recipient_id: this.recipientId, | ||
| amount: this.amount, | ||
| ...(this.reference && { reference: this.reference }), | ||
| ...(this.description && { description: this.description }), | ||
| ...(this.feeSource !== undefined && { fee_source: this.feeSource }), | ||
| ...(this.refundable !== undefined && { refundable: this.refundable }), | ||
|
AbdulazizAlrabiah marked this conversation as resolved.
|
||
| }; | ||
| } | ||
|
|
||
| static fromJson(json: Record<string, any>): PaymentSplit { | ||
| return new PaymentSplit({ | ||
| recipientId: json.recipient_id, | ||
| amount: json.amount, | ||
| reference: json.reference, | ||
| description: json.description, | ||
| feeSource: json.fee_source, | ||
| refundable: json.refundable, | ||
| }); | ||
| } | ||
| } | ||
This file contains hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.