@buckaroo/buckaroo_sdk
Version:
Buckaroo payment SDK
13 lines (12 loc) • 449 B
TypeScript
import { IRefundRequest, ServiceParameter } from '../../../Models';
import { IAfterPayArticle } from './Article';
export interface IRefund extends IRefundRequest {
articles?: IAfterPayArticle[];
}
export declare class Refund extends ServiceParameter {
set articles(articles: IAfterPayArticle[]);
protected getGroups(): {
[key: Capitalize<string>]: Capitalize<string>;
};
protected getCountable(): Capitalize<string>[];
}