chore: fixes to refund reasons tsdocs (#13796)

This commit is contained in:
Shahed Nasser
2025-10-21 15:05:30 +03:00
committed by GitHub
parent c6e58e5144
commit d9249be6e6

View File

@@ -101,7 +101,7 @@ export class RefundReason {
*
* ```ts
* sdk.admin.refundReason.retrieve("refr_123", {
* fields: "id,value"
* fields: "id,code"
* })
* .then(({ refund_reason }) => {
* console.log(refund_reason)
@@ -138,7 +138,7 @@ export class RefundReason {
*
* @example
* sdk.admin.refundReason.create({
* value: "refund",
* code: "refund",
* label: "Refund",
* })
* .then(({ refund_reason }) => {
@@ -176,7 +176,7 @@ export class RefundReason {
*
* @example
* sdk.admin.refundReason.update("ret_123", {
* value: "refund",
* code: "refund",
* label: "Refund",
* })
* .then(({ refund_reason }) => {