From 138ce70652bb975814d4bde918b030f493a041e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alican=20Akku=C5=9F?= Date: Thu, 16 May 2024 15:14:29 +0300 Subject: [PATCH] Add member based settlement delay count (#89) --- adapter/model.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/adapter/model.go b/adapter/model.go index 37a1f01..82333cd 100644 --- a/adapter/model.go +++ b/adapter/model.go @@ -1398,6 +1398,7 @@ type CreateMemberRequest struct { IsBuyer bool `json:"isBuyer,omitempty"` IsSubMerchant bool `json:"isSubMerchant,omitempty"` SubMerchantMaximumAllowedNegativeBalance float64 `json:"subMerchantMaximumAllowedNegativeBalance,omitempty"` + SettlementDelayCount int64 `json:"settlementDelayCount,omitempty"` } type UpdateMemberRequest struct { @@ -1416,6 +1417,7 @@ type UpdateMemberRequest struct { IsBuyer bool `json:"isBuyer,omitempty"` IsSubMerchant bool `json:"isSubMerchant,omitempty"` SubMerchantMaximumAllowedNegativeBalance float64 `json:"subMerchantMaximumAllowedNegativeBalance,omitempty"` + SettlementDelayCount int64 `json:"settlementDelayCount,omitempty"` } type SearchMembersRequest struct { @@ -1449,6 +1451,7 @@ type MemberResponse struct { TaxNumber *string `json:"taxNumber"` SettlementEarningsDestination *SettlementEarningsDestination `json:"settlementEarningsDestination"` Iban *string `json:"iban"` + SettlementDelayCount *int64 `json:"settlementDelayCount"` } type CreateProductRequest struct {