Skip to content

Commit

Permalink
fix: add merchant references to order types
Browse files Browse the repository at this point in the history
  • Loading branch information
HormCodes committed Aug 16, 2021
1 parent 249a0d1 commit a38220a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/api/checkout-v3/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ export interface IOrderBody {
merchant_urls: IMerchantObj;
recurring?: boolean;
shipping_options?: IShippingOption[];
merchant_reference1?: string;
merchant_reference2?: string;
}

export interface IShippingOption {
Expand Down Expand Up @@ -103,6 +105,8 @@ export interface IOrder {
recurring: boolean;
recurring_token: string;
recurring_description: string;
merchant_reference1?: string;
merchant_reference2?: string;
}

export interface IOrderResponse extends IResponse {
Expand Down

0 comments on commit a38220a

Please sign in to comment.