moovio_sdk 0.14.1__py3-none-any.whl → 0.14.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
moovio_sdk/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "moovio_sdk"
6
- __version__: str = "0.14.1"
6
+ __version__: str = "0.14.2"
7
7
  __openapi_doc_version__: str = "latest"
8
8
  __gen_version__: str = "2.692.0"
9
- __user_agent__: str = "speakeasy-sdk/python 0.14.1 2.692.0 latest moovio_sdk"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.14.2 2.692.0 latest moovio_sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -703,10 +703,6 @@ if TYPE_CHECKING:
703
703
  PayoutRecipientError,
704
704
  PayoutRecipientErrorTypedDict,
705
705
  )
706
- from .payoutrecipientupdate import (
707
- PayoutRecipientUpdate,
708
- PayoutRecipientUpdateTypedDict,
709
- )
710
706
  from .pendinglitigation import PendingLitigation
711
707
  from .phonenumber import PhoneNumber, PhoneNumberTypedDict
712
708
  from .phonenumbererror import PhoneNumberError, PhoneNumberErrorTypedDict
@@ -1675,8 +1671,6 @@ __all__ = [
1675
1671
  "PayoutRecipientError",
1676
1672
  "PayoutRecipientErrorTypedDict",
1677
1673
  "PayoutRecipientTypedDict",
1678
- "PayoutRecipientUpdate",
1679
- "PayoutRecipientUpdateTypedDict",
1680
1674
  "PendingLitigation",
1681
1675
  "Phone",
1682
1676
  "PhoneNumber",
@@ -2599,8 +2593,6 @@ _dynamic_imports: dict[str, str] = {
2599
2593
  "PayoutRecipientTypedDict": ".payoutrecipient",
2600
2594
  "PayoutRecipientError": ".payoutrecipienterror",
2601
2595
  "PayoutRecipientErrorTypedDict": ".payoutrecipienterror",
2602
- "PayoutRecipientUpdate": ".payoutrecipientupdate",
2603
- "PayoutRecipientUpdateTypedDict": ".payoutrecipientupdate",
2604
2596
  "PendingLitigation": ".pendinglitigation",
2605
2597
  "PhoneNumber": ".phonenumber",
2606
2598
  "PhoneNumberTypedDict": ".phonenumber",
@@ -14,6 +14,7 @@ class PaymentLinkPayoutDetailsTypedDict(TypedDict):
14
14
  r"""A list of payment methods that should be supported for this payment link."""
15
15
  recipient: PayoutRecipientTypedDict
16
16
  r"""Specify the intended recipient of the payout.
17
+ Either `email` or `phone` must be specified, but not both.
17
18
 
18
19
  This information will be used to authenticate the end user when they follow the payment link.
19
20
  """
@@ -27,6 +28,7 @@ class PaymentLinkPayoutDetails(BaseModel):
27
28
 
28
29
  recipient: PayoutRecipient
29
30
  r"""Specify the intended recipient of the payout.
31
+ Either `email` or `phone` must be specified, but not both.
30
32
 
31
33
  This information will be used to authenticate the end user when they follow the payment link.
32
34
  """
@@ -2,7 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from .disbursementpaymentmethodtype import DisbursementPaymentMethodType
5
- from .payoutrecipientupdate import PayoutRecipientUpdate, PayoutRecipientUpdateTypedDict
5
+ from .payoutrecipient import PayoutRecipient, PayoutRecipientTypedDict
6
6
  from moovio_sdk.types import BaseModel
7
7
  import pydantic
8
8
  from typing import List, Optional
@@ -12,8 +12,9 @@ from typing_extensions import Annotated, NotRequired, TypedDict
12
12
  class PaymentLinkPayoutDetailsUpdateTypedDict(TypedDict):
13
13
  allowed_methods: NotRequired[List[DisbursementPaymentMethodType]]
14
14
  r"""A list of payment methods that should be supported for this payment link."""
15
- recipient: NotRequired[PayoutRecipientUpdateTypedDict]
15
+ recipient: NotRequired[PayoutRecipientTypedDict]
16
16
  r"""Specify the intended recipient of the payout.
17
+ Either `email` or `phone` must be specified, but not both.
17
18
 
18
19
  This information will be used to authenticate the end user when they follow the payment link.
19
20
  """
@@ -26,8 +27,9 @@ class PaymentLinkPayoutDetailsUpdate(BaseModel):
26
27
  ] = None
27
28
  r"""A list of payment methods that should be supported for this payment link."""
28
29
 
29
- recipient: Optional[PayoutRecipientUpdate] = None
30
+ recipient: Optional[PayoutRecipient] = None
30
31
  r"""Specify the intended recipient of the payout.
32
+ Either `email` or `phone` must be specified, but not both.
31
33
 
32
34
  This information will be used to authenticate the end user when they follow the payment link.
33
35
  """
@@ -1,23 +1,30 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
+ from .phonenumber import PhoneNumber, PhoneNumberTypedDict
4
5
  from moovio_sdk.types import BaseModel
5
- from typing_extensions import TypedDict
6
+ from typing import Optional
7
+ from typing_extensions import NotRequired, TypedDict
6
8
 
7
9
 
8
10
  class PayoutRecipientTypedDict(TypedDict):
9
11
  r"""Specify the intended recipient of the payout.
12
+ Either `email` or `phone` must be specified, but not both.
10
13
 
11
14
  This information will be used to authenticate the end user when they follow the payment link.
12
15
  """
13
16
 
14
- email: str
17
+ email: NotRequired[str]
18
+ phone: NotRequired[PhoneNumberTypedDict]
15
19
 
16
20
 
17
21
  class PayoutRecipient(BaseModel):
18
22
  r"""Specify the intended recipient of the payout.
23
+ Either `email` or `phone` must be specified, but not both.
19
24
 
20
25
  This information will be used to authenticate the end user when they follow the payment link.
21
26
  """
22
27
 
23
- email: str
28
+ email: Optional[str] = None
29
+
30
+ phone: Optional[PhoneNumber] = None
@@ -1,6 +1,7 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
+ from .phonenumbererror import PhoneNumberError, PhoneNumberErrorTypedDict
4
5
  from moovio_sdk.types import BaseModel
5
6
  from typing import Optional
6
7
  from typing_extensions import NotRequired, TypedDict
@@ -8,7 +9,10 @@ from typing_extensions import NotRequired, TypedDict
8
9
 
9
10
  class PayoutRecipientErrorTypedDict(TypedDict):
10
11
  email: NotRequired[str]
12
+ phone: NotRequired[PhoneNumberErrorTypedDict]
11
13
 
12
14
 
13
15
  class PayoutRecipientError(BaseModel):
14
16
  email: Optional[str] = None
17
+
18
+ phone: Optional[PhoneNumberError] = None
@@ -70,28 +70,136 @@ class RequirementID(str, Enum):
70
70
  REPRESENTATIVE_REP_UUID_OWNERSHIP = "representative.{rep-uuid}.ownership"
71
71
  DOCUMENT_DOC_UUID_ = "document.{doc-uuid}"
72
72
  UNDERWRITING_BUSINESS_PRESENCE = "underwriting.businessPresence"
73
- UNDERWRITING_CAPABILITY_CARD_ACCEPTANCE_METHODS = (
74
- "underwriting.{capability}.cardAcceptanceMethods"
73
+ UNDERWRITING_GEOGRAPHIC_REACH = "underwriting.geographicReach"
74
+ UNDERWRITING_VOLUME_SHARE_BY_CUSTOMER_TYPE = (
75
+ "underwriting.volumeShareByCustomerType"
75
76
  )
76
- UNDERWRITING_CAPABILITY_CURRENTLY_ACCEPTS_CARDS = (
77
- "underwriting.{capability}.currentlyAcceptsCards"
77
+ UNDERWRITING_PENDING_LITIGATION = "underwriting.pendingLitigation"
78
+ UNDERWRITING_DOCUMENTS_PROCESSING_STATEMENTS_PAST3_MONTHS = (
79
+ "underwriting.documents.processingStatementsPast3Months"
78
80
  )
79
- UNDERWRITING_CAPABILITY_ESTIMATED_ACTIVITY_AVERAGE_TRANSACTION_AMOUNT = (
80
- "underwriting.{capability}.estimatedActivity.averageTransactionAmount"
81
+ UNDERWRITING_COLLECT_FUNDS_CARD_PAYMENTS_CARD_ACCEPTANCE_METHODS = (
82
+ "underwriting.collectFunds.cardPayments.cardAcceptanceMethods"
81
83
  )
82
- UNDERWRITING_CAPABILITY_ESTIMATED_ACTIVITY_MAXIMUM_TRANSACTION_AMOUNT = (
83
- "underwriting.{capability}.estimatedActivity.maximumTransactionAmount"
84
+ UNDERWRITING_COLLECT_FUNDS_CARD_PAYMENTS_CURRENTLY_ACCEPTS_CARDS = (
85
+ "underwriting.collectFunds.cardPayments.currentlyAcceptsCards"
84
86
  )
85
- UNDERWRITING_CAPABILITY_ESTIMATED_ACTIVITY_MONTHLY_VOLUME_RANGE = (
86
- "underwriting.{capability}.estimatedActivity.monthlyVolumeRange"
87
+ UNDERWRITING_COLLECT_FUNDS_CARD_PAYMENTS_ESTIMATED_ACTIVITY_AVERAGE_TRANSACTION_AMOUNT = "underwriting.collectFunds.cardPayments.estimatedActivity.averageTransactionAmount"
88
+ UNDERWRITING_COLLECT_FUNDS_CARD_PAYMENTS_ESTIMATED_ACTIVITY_MAXIMUM_TRANSACTION_AMOUNT = "underwriting.collectFunds.cardPayments.estimatedActivity.maximumTransactionAmount"
89
+ UNDERWRITING_COLLECT_FUNDS_CARD_PAYMENTS_ESTIMATED_ACTIVITY_MONTHLY_VOLUME_RANGE = (
90
+ "underwriting.collectFunds.cardPayments.estimatedActivity.monthlyVolumeRange"
87
91
  )
88
- UNDERWRITING_CAPABILITY_FULFILLMENT = "underwriting.{capability}.fulfillment"
89
- UNDERWRITING_GEOGRAPHIC_REACH = "underwriting.geographicReach"
90
- UNDERWRITING_PENDING_LITIGATION = "underwriting.pendingLitigation"
91
- UNDERWRITING_DOCUMENTS_PROCESSING_STATEMENTS_PAST3_MONTHS = (
92
- "underwriting.documents.processingStatementsPast3Months"
92
+ UNDERWRITING_COLLECT_FUNDS_CARD_PAYMENTS_FULFILLMENT = (
93
+ "underwriting.collectFunds.cardPayments.fulfillment"
93
94
  )
94
- UNDERWRITING_CAPABILITY_REFUND_POLICY = "underwriting.{capability}.refundPolicy"
95
- UNDERWRITING_VOLUME_SHARE_BY_CUSTOMER_TYPE = (
96
- "underwriting.volumeShareByCustomerType"
95
+ UNDERWRITING_COLLECT_FUNDS_CARD_PAYMENTS_REFUND_POLICY = (
96
+ "underwriting.collectFunds.cardPayments.refundPolicy"
97
+ )
98
+ UNDERWRITING_COLLECT_FUNDS_ACH_CARD_ACCEPTANCE_METHODS = (
99
+ "underwriting.collectFunds.ach.cardAcceptanceMethods"
100
+ )
101
+ UNDERWRITING_COLLECT_FUNDS_ACH_CURRENTLY_ACCEPTS_CARDS = (
102
+ "underwriting.collectFunds.ach.currentlyAcceptsCards"
103
+ )
104
+ UNDERWRITING_COLLECT_FUNDS_ACH_ESTIMATED_ACTIVITY_AVERAGE_TRANSACTION_AMOUNT = (
105
+ "underwriting.collectFunds.ach.estimatedActivity.averageTransactionAmount"
106
+ )
107
+ UNDERWRITING_COLLECT_FUNDS_ACH_ESTIMATED_ACTIVITY_MAXIMUM_TRANSACTION_AMOUNT = (
108
+ "underwriting.collectFunds.ach.estimatedActivity.maximumTransactionAmount"
109
+ )
110
+ UNDERWRITING_COLLECT_FUNDS_ACH_ESTIMATED_ACTIVITY_MONTHLY_VOLUME_RANGE = (
111
+ "underwriting.collectFunds.ach.estimatedActivity.monthlyVolumeRange"
112
+ )
113
+ UNDERWRITING_COLLECT_FUNDS_ACH_FULFILLMENT = (
114
+ "underwriting.collectFunds.ach.fulfillment"
115
+ )
116
+ UNDERWRITING_COLLECT_FUNDS_ACH_REFUND_POLICY = (
117
+ "underwriting.collectFunds.ach.refundPolicy"
118
+ )
119
+ UNDERWRITING_SEND_FUNDS_ACH_CARD_ACCEPTANCE_METHODS = (
120
+ "underwriting.sendFunds.ach.cardAcceptanceMethods"
121
+ )
122
+ UNDERWRITING_SEND_FUNDS_ACH_CURRENTLY_ACCEPTS_CARDS = (
123
+ "underwriting.sendFunds.ach.currentlyAcceptsCards"
124
+ )
125
+ UNDERWRITING_SEND_FUNDS_ACH_ESTIMATED_ACTIVITY_AVERAGE_TRANSACTION_AMOUNT = (
126
+ "underwriting.sendFunds.ach.estimatedActivity.averageTransactionAmount"
127
+ )
128
+ UNDERWRITING_SEND_FUNDS_ACH_ESTIMATED_ACTIVITY_MAXIMUM_TRANSACTION_AMOUNT = (
129
+ "underwriting.sendFunds.ach.estimatedActivity.maximumTransactionAmount"
130
+ )
131
+ UNDERWRITING_SEND_FUNDS_ACH_ESTIMATED_ACTIVITY_MONTHLY_VOLUME_RANGE = (
132
+ "underwriting.sendFunds.ach.estimatedActivity.monthlyVolumeRange"
133
+ )
134
+ UNDERWRITING_SEND_FUNDS_ACH_FULFILLMENT = "underwriting.sendFunds.ach.fulfillment"
135
+ UNDERWRITING_SEND_FUNDS_ACH_REFUND_POLICY = (
136
+ "underwriting.sendFunds.ach.refundPolicy"
137
+ )
138
+ UNDERWRITING_SEND_FUNDS_RTP_CARD_ACCEPTANCE_METHODS = (
139
+ "underwriting.sendFunds.rtp.cardAcceptanceMethods"
140
+ )
141
+ UNDERWRITING_SEND_FUNDS_RTP_CURRENTLY_ACCEPTS_CARDS = (
142
+ "underwriting.sendFunds.rtp.currentlyAcceptsCards"
143
+ )
144
+ UNDERWRITING_SEND_FUNDS_RTP_ESTIMATED_ACTIVITY_AVERAGE_TRANSACTION_AMOUNT = (
145
+ "underwriting.sendFunds.rtp.estimatedActivity.averageTransactionAmount"
146
+ )
147
+ UNDERWRITING_SEND_FUNDS_RTP_ESTIMATED_ACTIVITY_MAXIMUM_TRANSACTION_AMOUNT = (
148
+ "underwriting.sendFunds.rtp.estimatedActivity.maximumTransactionAmount"
149
+ )
150
+ UNDERWRITING_SEND_FUNDS_RTP_ESTIMATED_ACTIVITY_MONTHLY_VOLUME_RANGE = (
151
+ "underwriting.sendFunds.rtp.estimatedActivity.monthlyVolumeRange"
152
+ )
153
+ UNDERWRITING_SEND_FUNDS_RTP_FULFILLMENT = "underwriting.sendFunds.rtp.fulfillment"
154
+ UNDERWRITING_SEND_FUNDS_RTP_REFUND_POLICY = (
155
+ "underwriting.sendFunds.rtp.refundPolicy"
156
+ )
157
+ UNDERWRITING_SEND_FUNDS_PUSH_TO_CARD_CARD_ACCEPTANCE_METHODS = (
158
+ "underwriting.sendFunds.pushToCard.cardAcceptanceMethods"
159
+ )
160
+ UNDERWRITING_SEND_FUNDS_PUSH_TO_CARD_CURRENTLY_ACCEPTS_CARDS = (
161
+ "underwriting.sendFunds.pushToCard.currentlyAcceptsCards"
162
+ )
163
+ UNDERWRITING_SEND_FUNDS_PUSH_TO_CARD_ESTIMATED_ACTIVITY_AVERAGE_TRANSACTION_AMOUNT = "underwriting.sendFunds.pushToCard.estimatedActivity.averageTransactionAmount"
164
+ UNDERWRITING_SEND_FUNDS_PUSH_TO_CARD_ESTIMATED_ACTIVITY_MAXIMUM_TRANSACTION_AMOUNT = "underwriting.sendFunds.pushToCard.estimatedActivity.maximumTransactionAmount"
165
+ UNDERWRITING_SEND_FUNDS_PUSH_TO_CARD_ESTIMATED_ACTIVITY_MONTHLY_VOLUME_RANGE = (
166
+ "underwriting.sendFunds.pushToCard.estimatedActivity.monthlyVolumeRange"
167
+ )
168
+ UNDERWRITING_SEND_FUNDS_PUSH_TO_CARD_FULFILLMENT = (
169
+ "underwriting.sendFunds.pushToCard.fulfillment"
170
+ )
171
+ UNDERWRITING_SEND_FUNDS_PUSH_TO_CARD_REFUND_POLICY = (
172
+ "underwriting.sendFunds.pushToCard.refundPolicy"
173
+ )
174
+ UNDERWRITING_MONEY_TRANSFER_PULL_FROM_CARD_CARD_ACCEPTANCE_METHODS = (
175
+ "underwriting.moneyTransfer.pullFromCard.cardAcceptanceMethods"
176
+ )
177
+ UNDERWRITING_MONEY_TRANSFER_PULL_FROM_CARD_CURRENTLY_ACCEPTS_CARDS = (
178
+ "underwriting.moneyTransfer.pullFromCard.currentlyAcceptsCards"
179
+ )
180
+ UNDERWRITING_MONEY_TRANSFER_PULL_FROM_CARD_ESTIMATED_ACTIVITY_AVERAGE_TRANSACTION_AMOUNT = "underwriting.moneyTransfer.pullFromCard.estimatedActivity.averageTransactionAmount"
181
+ UNDERWRITING_MONEY_TRANSFER_PULL_FROM_CARD_ESTIMATED_ACTIVITY_MAXIMUM_TRANSACTION_AMOUNT = "underwriting.moneyTransfer.pullFromCard.estimatedActivity.maximumTransactionAmount"
182
+ UNDERWRITING_MONEY_TRANSFER_PULL_FROM_CARD_ESTIMATED_ACTIVITY_MONTHLY_VOLUME_RANGE = "underwriting.moneyTransfer.pullFromCard.estimatedActivity.monthlyVolumeRange"
183
+ UNDERWRITING_MONEY_TRANSFER_PULL_FROM_CARD_FULFILLMENT = (
184
+ "underwriting.moneyTransfer.pullFromCard.fulfillment"
185
+ )
186
+ UNDERWRITING_MONEY_TRANSFER_PULL_FROM_CARD_REFUND_POLICY = (
187
+ "underwriting.moneyTransfer.pullFromCard.refundPolicy"
188
+ )
189
+ UNDERWRITING_MONEY_TRANSFER_PUSH_TO_CARD_CARD_ACCEPTANCE_METHODS = (
190
+ "underwriting.moneyTransfer.pushToCard.cardAcceptanceMethods"
191
+ )
192
+ UNDERWRITING_MONEY_TRANSFER_PUSH_TO_CARD_CURRENTLY_ACCEPTS_CARDS = (
193
+ "underwriting.moneyTransfer.pushToCard.currentlyAcceptsCards"
194
+ )
195
+ UNDERWRITING_MONEY_TRANSFER_PUSH_TO_CARD_ESTIMATED_ACTIVITY_AVERAGE_TRANSACTION_AMOUNT = "underwriting.moneyTransfer.pushToCard.estimatedActivity.averageTransactionAmount"
196
+ UNDERWRITING_MONEY_TRANSFER_PUSH_TO_CARD_ESTIMATED_ACTIVITY_MAXIMUM_TRANSACTION_AMOUNT = "underwriting.moneyTransfer.pushToCard.estimatedActivity.maximumTransactionAmount"
197
+ UNDERWRITING_MONEY_TRANSFER_PUSH_TO_CARD_ESTIMATED_ACTIVITY_MONTHLY_VOLUME_RANGE = (
198
+ "underwriting.moneyTransfer.pushToCard.estimatedActivity.monthlyVolumeRange"
199
+ )
200
+ UNDERWRITING_MONEY_TRANSFER_PUSH_TO_CARD_FULFILLMENT = (
201
+ "underwriting.moneyTransfer.pushToCard.fulfillment"
202
+ )
203
+ UNDERWRITING_MONEY_TRANSFER_PUSH_TO_CARD_REFUND_POLICY = (
204
+ "underwriting.moneyTransfer.pushToCard.refundPolicy"
97
205
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: moovio_sdk
3
- Version: 0.14.1
3
+ Version: 0.14.2
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -3,7 +3,7 @@ moovio_sdk/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c
3
3
  moovio_sdk/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
4
  moovio_sdk/_hooks/sdkhooks.py,sha256=2XuMgiV2N7UE7lN00Is-c3spxVWigYitXS6xSmS_Qow,2560
5
5
  moovio_sdk/_hooks/types.py,sha256=Yi9LD8_sd4zG7_idzCZY4MTxTXMhDlmCdpQvU4dXFI4,3049
6
- moovio_sdk/_version.py,sha256=_ZJHODbU0jYjeM2JlMo1sRtd8ylWenaUvYpyE9-kvzw,466
6
+ moovio_sdk/_version.py,sha256=jogpgiW4JBG_NWzsDLgMSF4g2T8xbXKpPiir1xUmzII,466
7
7
  moovio_sdk/account_terminal_applications.py,sha256=ldTg5uAukIAwfziQFgmuq6vlAsUPS5DqMkgdCx9bwn8,38522
8
8
  moovio_sdk/accounts.py,sha256=lewHrThSM4fGY8kAut2d27dNJmtV0CPzGvwzmeqStnY,100356
9
9
  moovio_sdk/adjustments.py,sha256=U2AtbA2k71S1IpwjJ96LT4SdGUDqR3JEgOSvMm9a2yU,17613
@@ -27,7 +27,7 @@ moovio_sdk/industries.py,sha256=ZUdnD3w84e1oOOQlye60I9QTFn_0JLGF0uMDrASl8A4,9372
27
27
  moovio_sdk/institutions.py,sha256=Kp90bbtOsfb1slR_8RgmYHkgH8G6Pp9FZds2rc7J6Ck,20523
28
28
  moovio_sdk/issuing_transactions.py,sha256=pckxIPSAJDMt-PcKduqdVhd7fsbUwCKzlkGb_UBwRW0,48949
29
29
  moovio_sdk/models/__init__.py,sha256=wIW9sbvSKlrGyoPY4mXvHqw-_Inpl6zqpN6U6j-w6SU,83
30
- moovio_sdk/models/components/__init__.py,sha256=RBGuwah57wL54IOT7-knTicmTqOpFmKJDnwHPPiEY0w,122970
30
+ moovio_sdk/models/components/__init__.py,sha256=DSYASXPXP5pRJMGoFWkZp-Dj7GBBHme_1sUqywRflhE,122666
31
31
  moovio_sdk/models/components/account.py,sha256=QejMoPHYyHF-6TRrUVKYyfD_6Qbl7lFVOEaE8zlOgmI,4181
32
32
  moovio_sdk/models/components/accountcapability.py,sha256=LJ908Zr4lw2qtMwUMLWoscTUjj5wV7YlZ4Z0Vv_abjg,527
33
33
  moovio_sdk/models/components/accountcountries.py,sha256=sI1VAu3PqS2HTOarkT7f6FbkgUT55NL57PvAZKcbRHw,456
@@ -310,8 +310,8 @@ moovio_sdk/models/components/paymentlinkdisplayoptions.py,sha256=9rT_QoeVtqClxQK
310
310
  moovio_sdk/models/components/paymentlinkdisplayoptionsupdate.py,sha256=Gi48psRbzJsT7H_M6iwfs7Jv0AVcqJYXl7oSKm2VWQI,1452
311
311
  moovio_sdk/models/components/paymentlinkpaymentdetails.py,sha256=qxu-fxQQxspVBiFLSXhw5NUJYOL4yUaf4wULvMuvFA8,1682
312
312
  moovio_sdk/models/components/paymentlinkpaymentdetailsupdate.py,sha256=AzpriAe0vOmdKQ44TH4xDHvYHJyTNGM2mgsQLbTvMHg,1733
313
- moovio_sdk/models/components/paymentlinkpayoutdetails.py,sha256=I9XZMzfvubg6KgI4cjBwiBrbcONG14s4jT9AawCi_s0,1224
314
- moovio_sdk/models/components/paymentlinkpayoutdetailsupdate.py,sha256=c6xXDinJR_eNc8ySM5SSfolUJcGHgMBJV3iJMCmxUHQ,1358
313
+ moovio_sdk/models/components/paymentlinkpayoutdetails.py,sha256=QqgdGB7_Ira0EUxA0EpGm9ryytJU-oJ76pbXyuBsRtg,1350
314
+ moovio_sdk/models/components/paymentlinkpayoutdetailsupdate.py,sha256=yGLjjc0GKKOFfR8C8gjszZtdAUBbHcVzcd5F7qzGo6A,1454
315
315
  moovio_sdk/models/components/paymentlinkstatus.py,sha256=msrQMJyTpPfxsiY_jlYLUjfozjTUqD1er-UJ3bmFMiw,258
316
316
  moovio_sdk/models/components/paymentmethod.py,sha256=0Y5Dw43hTWrT3md6TYLWw71UaqgXx-FoGDkC2yRNQaM,3106
317
317
  moovio_sdk/models/components/paymentmethodsbankaccount.py,sha256=hFtw7jmbaMqyhqWV1lv7lsU-jPxtZHC8TB8lQRMMO7M,2160
@@ -319,9 +319,8 @@ moovio_sdk/models/components/paymentmethodscard.py,sha256=TaC-4I1GI-ZYeu79vrQB0B
319
319
  moovio_sdk/models/components/paymentmethodswallet.py,sha256=j-MNQmjwCiS29UbMCoeR8JTH981oicIeCFaZfzP4UTI,388
320
320
  moovio_sdk/models/components/paymentmethodtype.py,sha256=fix1w2wY7-xoKQH5wYb0kbMeNlg5gM3GGqCpiYJHvi4,678
321
321
  moovio_sdk/models/components/payoutdetailserror.py,sha256=UkRP7L99TiPkNcIEGEhR8HJbLeTPhOHRSDTGu3i92uM,685
322
- moovio_sdk/models/components/payoutrecipient.py,sha256=D708o36yvkCVFfCfTE-Qu4LqmaBHoaF5scJkJBRzOoc,622
323
- moovio_sdk/models/components/payoutrecipienterror.py,sha256=rjo4BKnbTOxQMTdsfYNNFUpRDug48ZwVXEGLjzpTPxk,379
324
- moovio_sdk/models/components/payoutrecipientupdate.py,sha256=f-DK-Ttzt4Ui4kQVv7F_7v7oPxle__RpXP0DXaSH4CY,705
322
+ moovio_sdk/models/components/payoutrecipient.py,sha256=qriv-_mDdRPS5RQ9UXgNVDa9ydY-4jhZSgwg21MRi7s,964
323
+ moovio_sdk/models/components/payoutrecipienterror.py,sha256=OJi0x382cNDWddf7jWM-uXvnFXueydleePkztHG9Qt8,549
325
324
  moovio_sdk/models/components/pendinglitigation.py,sha256=Re7llSNhefWKnCeC4vUdkWIHyWLo_qOsBS3HNAMd_ok,732
326
325
  moovio_sdk/models/components/phonenumber.py,sha256=s4GOoLw9s1oJ8e5pdU_TvZ9FXEIQM9x1atoh5NhnGsw,513
327
326
  moovio_sdk/models/components/phonenumbererror.py,sha256=nmCqJfcBIuphMCEwZlriaqL31BQTQmWCFs0Km2k3V4Q,523
@@ -349,7 +348,7 @@ moovio_sdk/models/components/representativeresponsibilitieserror.py,sha256=EgVuy
349
348
  moovio_sdk/models/components/requestcard.py,sha256=zRqFMEQt45o_kHaUIzncHYxqdDRBwH-f4kR3lz044HM,1878
350
349
  moovio_sdk/models/components/requirementerror.py,sha256=fQivhquOapuLAVl2TYLsoEseHhczvRUo9ekYuF6B-_o,815
351
350
  moovio_sdk/models/components/requirementerrorcode.py,sha256=MIYpCWakr0KoPfXSqNw_1KXMfF4qwWr0HVkEo7z4GJ0,1059
352
- moovio_sdk/models/components/requirementid.py,sha256=nyHLAz2NggBCDgbDSJMhBn1rQ2QENmttPdHZ2okfR2U,5009
351
+ moovio_sdk/models/components/requirementid.py,sha256=27o_zPAk091-UeimiyglFRrur1wvS9b6fpCwdM7Inos,11299
353
352
  moovio_sdk/models/components/returnpolicytype.py,sha256=qS0F0eGE52oHxiv6jL_QSJnW2NqJxq0tZl8wvBB6AFo,284
354
353
  moovio_sdk/models/components/reversal.py,sha256=1mQ3-UE4VjGsC1AvqMlMKb1dBk6EMFDyr20gHWbFx44,811
355
354
  moovio_sdk/models/components/reversedwithcancellation.py,sha256=3TH77_JiFxnFt6JGyLw99Fl5LYd95qhMrLb-WpN1WAo,419
@@ -715,6 +714,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
715
714
  moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
716
715
  moovio_sdk/wallet_transactions.py,sha256=rWA4_DLFg6QegHSA1GCsCQWx2EfO12vimnvYZg0dRbc,23208
717
716
  moovio_sdk/wallets.py,sha256=HcBpH4qpsaiatN81e4-pPBeJ6gndorUsiPS2XqNvxcY,42528
718
- moovio_sdk-0.14.1.dist-info/METADATA,sha256=Bq3_iXYluG7oOcPPrzQmFc6g5I0eXvvpbHxwfWq8W0Q,112644
719
- moovio_sdk-0.14.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
720
- moovio_sdk-0.14.1.dist-info/RECORD,,
717
+ moovio_sdk-0.14.2.dist-info/METADATA,sha256=lD92VuG879eyuHOcjF1QChwNe7DeJqr3URsGw4k5q1o,112644
718
+ moovio_sdk-0.14.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
719
+ moovio_sdk-0.14.2.dist-info/RECORD,,
@@ -1,24 +0,0 @@
1
- """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
-
3
- from __future__ import annotations
4
- from moovio_sdk.types import BaseModel
5
- from typing import Optional
6
- from typing_extensions import NotRequired, TypedDict
7
-
8
-
9
- class PayoutRecipientUpdateTypedDict(TypedDict):
10
- r"""Specify the intended recipient of the payout.
11
-
12
- This information will be used to authenticate the end user when they follow the payment link.
13
- """
14
-
15
- email: NotRequired[str]
16
-
17
-
18
- class PayoutRecipientUpdate(BaseModel):
19
- r"""Specify the intended recipient of the payout.
20
-
21
- This information will be used to authenticate the end user when they follow the payment link.
22
- """
23
-
24
- email: Optional[str] = None