chore: added TSDocs to refund reason HTTP type (#13717)

This commit is contained in:
Shahed Nasser
2025-10-13 11:17:36 +03:00
committed by GitHub
parent 137b237c84
commit a48ee395ed

View File

@@ -39,11 +39,32 @@ export interface BaseRefundReason {
}
export interface BaseRefundReasonListParams extends FindParams {
/**
* A search term to search for refund reasons by label or description.
*/
q?: string
/**
* Filter by refund reason ID(s).
*/
id?: string | string[]
/**
* Filter by label(s).
*/
label?: string | OperatorMap<string>
/**
* Filter by description(s).
*/
description?: string | OperatorMap<string>
/**
* Filter by parent refund reason ID(s).
*/
parent_refund_reason_id?: string | OperatorMap<string | string[]>
/**
* Filter by creation date.
*/
created_at?: OperatorMap<string>
/**
* Filter by update date.
*/
updated_at?: OperatorMap<string>
}