pluggy-sdk 1.0.0.post7__py3-none-any.whl → 1.0.0.post9__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.
pluggy_sdk/__init__.py CHANGED
@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.0.0.post7"
18
+ __version__ = "1.0.0.post9"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pluggy_sdk.api.account_api import AccountApi
@@ -77,6 +77,9 @@ from pluggy_sdk.models.bank_data import BankData
77
77
  from pluggy_sdk.models.bill import Bill
78
78
  from pluggy_sdk.models.bill_finance_charge import BillFinanceCharge
79
79
  from pluggy_sdk.models.bills_list200_response import BillsList200Response
80
+ from pluggy_sdk.models.boleto import Boleto
81
+ from pluggy_sdk.models.boleto_payer import BoletoPayer
82
+ from pluggy_sdk.models.boleto_recipient import BoletoRecipient
80
83
  from pluggy_sdk.models.bulk_payment import BulkPayment
81
84
  from pluggy_sdk.models.bulk_payments_list200_response import BulkPaymentsList200Response
82
85
  from pluggy_sdk.models.category import Category
@@ -90,6 +93,7 @@ from pluggy_sdk.models.connector_health import ConnectorHealth
90
93
  from pluggy_sdk.models.connector_health_details import ConnectorHealthDetails
91
94
  from pluggy_sdk.models.connector_list_response import ConnectorListResponse
92
95
  from pluggy_sdk.models.connector_user_action import ConnectorUserAction
96
+ from pluggy_sdk.models.create_boleto_payment_request import CreateBoletoPaymentRequest
93
97
  from pluggy_sdk.models.create_bulk_payment import CreateBulkPayment
94
98
  from pluggy_sdk.models.create_client_category_rule import CreateClientCategoryRule
95
99
  from pluggy_sdk.models.create_item import CreateItem
@@ -19,6 +19,7 @@ from typing_extensions import Annotated
19
19
 
20
20
  from pydantic import Field, StrictStr
21
21
  from typing_extensions import Annotated
22
+ from pluggy_sdk.models.create_boleto_payment_request import CreateBoletoPaymentRequest
22
23
  from pluggy_sdk.models.create_payment_request import CreatePaymentRequest
23
24
  from pluggy_sdk.models.create_pix_qr_payment_request import CreatePixQrPaymentRequest
24
25
  from pluggy_sdk.models.payment_receipt import PaymentReceipt
@@ -316,6 +317,277 @@ class PaymentRequestApi:
316
317
 
317
318
 
318
319
 
320
+ @validate_call
321
+ def payment_request_create_boleto(
322
+ self,
323
+ create_boleto_payment_request: CreateBoletoPaymentRequest,
324
+ _request_timeout: Union[
325
+ None,
326
+ Annotated[StrictFloat, Field(gt=0)],
327
+ Tuple[
328
+ Annotated[StrictFloat, Field(gt=0)],
329
+ Annotated[StrictFloat, Field(gt=0)]
330
+ ]
331
+ ] = None,
332
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
333
+ _content_type: Optional[StrictStr] = None,
334
+ _headers: Optional[Dict[StrictStr, Any]] = None,
335
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
336
+ ) -> PaymentRequest:
337
+ """Create boleto payment request
338
+
339
+ Creates the boleto payment request resource
340
+
341
+ :param create_boleto_payment_request: (required)
342
+ :type create_boleto_payment_request: CreateBoletoPaymentRequest
343
+ :param _request_timeout: timeout setting for this request. If one
344
+ number provided, it will be total request
345
+ timeout. It can also be a pair (tuple) of
346
+ (connection, read) timeouts.
347
+ :type _request_timeout: int, tuple(int, int), optional
348
+ :param _request_auth: set to override the auth_settings for an a single
349
+ request; this effectively ignores the
350
+ authentication in the spec for a single request.
351
+ :type _request_auth: dict, optional
352
+ :param _content_type: force content-type for the request.
353
+ :type _content_type: str, Optional
354
+ :param _headers: set to override the headers for a single
355
+ request; this effectively ignores the headers
356
+ in the spec for a single request.
357
+ :type _headers: dict, optional
358
+ :param _host_index: set to override the host_index for a single
359
+ request; this effectively ignores the host_index
360
+ in the spec for a single request.
361
+ :type _host_index: int, optional
362
+ :return: Returns the result object.
363
+ """ # noqa: E501
364
+
365
+ _param = self._payment_request_create_boleto_serialize(
366
+ create_boleto_payment_request=create_boleto_payment_request,
367
+ _request_auth=_request_auth,
368
+ _content_type=_content_type,
369
+ _headers=_headers,
370
+ _host_index=_host_index
371
+ )
372
+
373
+ _response_types_map: Dict[str, Optional[str]] = {
374
+ '200': "PaymentRequest",
375
+ }
376
+ response_data = self.api_client.call_api(
377
+ *_param,
378
+ _request_timeout=_request_timeout
379
+ )
380
+ response_data.read()
381
+ return self.api_client.response_deserialize(
382
+ response_data=response_data,
383
+ response_types_map=_response_types_map,
384
+ ).data
385
+
386
+
387
+ @validate_call
388
+ def payment_request_create_boleto_with_http_info(
389
+ self,
390
+ create_boleto_payment_request: CreateBoletoPaymentRequest,
391
+ _request_timeout: Union[
392
+ None,
393
+ Annotated[StrictFloat, Field(gt=0)],
394
+ Tuple[
395
+ Annotated[StrictFloat, Field(gt=0)],
396
+ Annotated[StrictFloat, Field(gt=0)]
397
+ ]
398
+ ] = None,
399
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
400
+ _content_type: Optional[StrictStr] = None,
401
+ _headers: Optional[Dict[StrictStr, Any]] = None,
402
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
403
+ ) -> ApiResponse[PaymentRequest]:
404
+ """Create boleto payment request
405
+
406
+ Creates the boleto payment request resource
407
+
408
+ :param create_boleto_payment_request: (required)
409
+ :type create_boleto_payment_request: CreateBoletoPaymentRequest
410
+ :param _request_timeout: timeout setting for this request. If one
411
+ number provided, it will be total request
412
+ timeout. It can also be a pair (tuple) of
413
+ (connection, read) timeouts.
414
+ :type _request_timeout: int, tuple(int, int), optional
415
+ :param _request_auth: set to override the auth_settings for an a single
416
+ request; this effectively ignores the
417
+ authentication in the spec for a single request.
418
+ :type _request_auth: dict, optional
419
+ :param _content_type: force content-type for the request.
420
+ :type _content_type: str, Optional
421
+ :param _headers: set to override the headers for a single
422
+ request; this effectively ignores the headers
423
+ in the spec for a single request.
424
+ :type _headers: dict, optional
425
+ :param _host_index: set to override the host_index for a single
426
+ request; this effectively ignores the host_index
427
+ in the spec for a single request.
428
+ :type _host_index: int, optional
429
+ :return: Returns the result object.
430
+ """ # noqa: E501
431
+
432
+ _param = self._payment_request_create_boleto_serialize(
433
+ create_boleto_payment_request=create_boleto_payment_request,
434
+ _request_auth=_request_auth,
435
+ _content_type=_content_type,
436
+ _headers=_headers,
437
+ _host_index=_host_index
438
+ )
439
+
440
+ _response_types_map: Dict[str, Optional[str]] = {
441
+ '200': "PaymentRequest",
442
+ }
443
+ response_data = self.api_client.call_api(
444
+ *_param,
445
+ _request_timeout=_request_timeout
446
+ )
447
+ response_data.read()
448
+ return self.api_client.response_deserialize(
449
+ response_data=response_data,
450
+ response_types_map=_response_types_map,
451
+ )
452
+
453
+
454
+ @validate_call
455
+ def payment_request_create_boleto_without_preload_content(
456
+ self,
457
+ create_boleto_payment_request: CreateBoletoPaymentRequest,
458
+ _request_timeout: Union[
459
+ None,
460
+ Annotated[StrictFloat, Field(gt=0)],
461
+ Tuple[
462
+ Annotated[StrictFloat, Field(gt=0)],
463
+ Annotated[StrictFloat, Field(gt=0)]
464
+ ]
465
+ ] = None,
466
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
467
+ _content_type: Optional[StrictStr] = None,
468
+ _headers: Optional[Dict[StrictStr, Any]] = None,
469
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
470
+ ) -> RESTResponseType:
471
+ """Create boleto payment request
472
+
473
+ Creates the boleto payment request resource
474
+
475
+ :param create_boleto_payment_request: (required)
476
+ :type create_boleto_payment_request: CreateBoletoPaymentRequest
477
+ :param _request_timeout: timeout setting for this request. If one
478
+ number provided, it will be total request
479
+ timeout. It can also be a pair (tuple) of
480
+ (connection, read) timeouts.
481
+ :type _request_timeout: int, tuple(int, int), optional
482
+ :param _request_auth: set to override the auth_settings for an a single
483
+ request; this effectively ignores the
484
+ authentication in the spec for a single request.
485
+ :type _request_auth: dict, optional
486
+ :param _content_type: force content-type for the request.
487
+ :type _content_type: str, Optional
488
+ :param _headers: set to override the headers for a single
489
+ request; this effectively ignores the headers
490
+ in the spec for a single request.
491
+ :type _headers: dict, optional
492
+ :param _host_index: set to override the host_index for a single
493
+ request; this effectively ignores the host_index
494
+ in the spec for a single request.
495
+ :type _host_index: int, optional
496
+ :return: Returns the result object.
497
+ """ # noqa: E501
498
+
499
+ _param = self._payment_request_create_boleto_serialize(
500
+ create_boleto_payment_request=create_boleto_payment_request,
501
+ _request_auth=_request_auth,
502
+ _content_type=_content_type,
503
+ _headers=_headers,
504
+ _host_index=_host_index
505
+ )
506
+
507
+ _response_types_map: Dict[str, Optional[str]] = {
508
+ '200': "PaymentRequest",
509
+ }
510
+ response_data = self.api_client.call_api(
511
+ *_param,
512
+ _request_timeout=_request_timeout
513
+ )
514
+ return response_data.response
515
+
516
+
517
+ def _payment_request_create_boleto_serialize(
518
+ self,
519
+ create_boleto_payment_request,
520
+ _request_auth,
521
+ _content_type,
522
+ _headers,
523
+ _host_index,
524
+ ) -> RequestSerialized:
525
+
526
+ _host = None
527
+
528
+ _collection_formats: Dict[str, str] = {
529
+ }
530
+
531
+ _path_params: Dict[str, str] = {}
532
+ _query_params: List[Tuple[str, str]] = []
533
+ _header_params: Dict[str, Optional[str]] = _headers or {}
534
+ _form_params: List[Tuple[str, str]] = []
535
+ _files: Dict[str, Union[str, bytes]] = {}
536
+ _body_params: Optional[bytes] = None
537
+
538
+ # process the path parameters
539
+ # process the query parameters
540
+ # process the header parameters
541
+ # process the form parameters
542
+ # process the body parameter
543
+ if create_boleto_payment_request is not None:
544
+ _body_params = create_boleto_payment_request
545
+
546
+
547
+ # set the HTTP header `Accept`
548
+ _header_params['Accept'] = self.api_client.select_header_accept(
549
+ [
550
+ 'application/json'
551
+ ]
552
+ )
553
+
554
+ # set the HTTP header `Content-Type`
555
+ if _content_type:
556
+ _header_params['Content-Type'] = _content_type
557
+ else:
558
+ _default_content_type = (
559
+ self.api_client.select_header_content_type(
560
+ [
561
+ 'application/json'
562
+ ]
563
+ )
564
+ )
565
+ if _default_content_type is not None:
566
+ _header_params['Content-Type'] = _default_content_type
567
+
568
+ # authentication setting
569
+ _auth_settings: List[str] = [
570
+ 'default'
571
+ ]
572
+
573
+ return self.api_client.param_serialize(
574
+ method='POST',
575
+ resource_path='/payments/requests/boleto',
576
+ path_params=_path_params,
577
+ query_params=_query_params,
578
+ header_params=_header_params,
579
+ body=_body_params,
580
+ post_params=_form_params,
581
+ files=_files,
582
+ auth_settings=_auth_settings,
583
+ collection_formats=_collection_formats,
584
+ _host=_host,
585
+ _request_auth=_request_auth
586
+ )
587
+
588
+
589
+
590
+
319
591
  @validate_call
320
592
  def payment_request_create_pix_qr(
321
593
  self,
pluggy_sdk/api_client.py CHANGED
@@ -89,7 +89,7 @@ class ApiClient:
89
89
  self.default_headers[header_name] = header_value
90
90
  self.cookie = cookie
91
91
  # Set default User-Agent.
92
- self.user_agent = 'OpenAPI-Generator/1.0.0.post7/python'
92
+ self.user_agent = 'OpenAPI-Generator/1.0.0.post9/python'
93
93
  self.client_side_validation = configuration.client_side_validation
94
94
 
95
95
  def __enter__(self):
@@ -400,7 +400,7 @@ conf = pluggy_sdk.Configuration(
400
400
  "OS: {env}\n"\
401
401
  "Python Version: {pyversion}\n"\
402
402
  "Version of the API: 1.0.0\n"\
403
- "SDK Package Version: 1.0.0.post7".\
403
+ "SDK Package Version: 1.0.0.post9".\
404
404
  format(env=sys.platform, pyversion=sys.version)
405
405
 
406
406
  def get_host_settings(self):
@@ -39,6 +39,9 @@ from pluggy_sdk.models.bank_data import BankData
39
39
  from pluggy_sdk.models.bill import Bill
40
40
  from pluggy_sdk.models.bill_finance_charge import BillFinanceCharge
41
41
  from pluggy_sdk.models.bills_list200_response import BillsList200Response
42
+ from pluggy_sdk.models.boleto import Boleto
43
+ from pluggy_sdk.models.boleto_payer import BoletoPayer
44
+ from pluggy_sdk.models.boleto_recipient import BoletoRecipient
42
45
  from pluggy_sdk.models.bulk_payment import BulkPayment
43
46
  from pluggy_sdk.models.bulk_payments_list200_response import BulkPaymentsList200Response
44
47
  from pluggy_sdk.models.category import Category
@@ -52,6 +55,7 @@ from pluggy_sdk.models.connector_health import ConnectorHealth
52
55
  from pluggy_sdk.models.connector_health_details import ConnectorHealthDetails
53
56
  from pluggy_sdk.models.connector_list_response import ConnectorListResponse
54
57
  from pluggy_sdk.models.connector_user_action import ConnectorUserAction
58
+ from pluggy_sdk.models.create_boleto_payment_request import CreateBoletoPaymentRequest
55
59
  from pluggy_sdk.models.create_bulk_payment import CreateBulkPayment
56
60
  from pluggy_sdk.models.create_client_category_rule import CreateClientCategoryRule
57
61
  from pluggy_sdk.models.create_item import CreateItem
@@ -0,0 +1,121 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pluggy API
5
+
6
+ Pluggy's main API to review data and execute connectors
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: hello@pluggy.ai
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from datetime import datetime
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
23
+ from typing import Any, ClassVar, Dict, List, Optional, Union
24
+ from pluggy_sdk.models.boleto_payer import BoletoPayer
25
+ from pluggy_sdk.models.boleto_recipient import BoletoRecipient
26
+ from typing import Optional, Set
27
+ from typing_extensions import Self
28
+
29
+ class Boleto(BaseModel):
30
+ """
31
+ Boleto data
32
+ """ # noqa: E501
33
+ digitable_line: StrictStr = Field(description="Boleto digitable line", alias="digitableLine")
34
+ barcode: StrictStr = Field(description="Boleto barcode")
35
+ payer: BoletoPayer
36
+ recipient: BoletoRecipient
37
+ var_date: datetime = Field(description="Boleto issue date", alias="date")
38
+ due_date: datetime = Field(description="Boleto due date", alias="dueDate")
39
+ expiration_date: datetime = Field(description="After this date, the boleto cannot be paid", alias="expirationDate")
40
+ base_amount: Union[StrictFloat, StrictInt] = Field(description="Boleto original amount, without interests, penalties and discounts", alias="baseAmount")
41
+ penalty_amount: Union[StrictFloat, StrictInt] = Field(description="Boleto penalty amount. If there is no penalty, it will be returned as zero", alias="penaltyAmount")
42
+ interest_amount: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Boleto interest amount. If there is no interest, it will be returned as zero", alias="interestAmount")
43
+ discount_amount: Union[StrictFloat, StrictInt] = Field(description="Boleto discount amount. If there is no discounts, it will be returned as zero", alias="discountAmount")
44
+ total_amount: Union[StrictFloat, StrictInt] = Field(description="Boleto final amount. It is equal to the base amount plus penalties and interests, minus discounts", alias="totalAmount")
45
+ updated_at: Optional[datetime] = Field(default=None, description="Date when the lastest information of this boleto has been retrieved", alias="updatedAt")
46
+ __properties: ClassVar[List[str]] = ["digitableLine", "barcode", "payer", "recipient", "date", "dueDate", "expirationDate", "baseAmount", "penaltyAmount", "interestAmount", "discountAmount", "totalAmount", "updatedAt"]
47
+
48
+ model_config = ConfigDict(
49
+ populate_by_name=True,
50
+ validate_assignment=True,
51
+ protected_namespaces=(),
52
+ )
53
+
54
+
55
+ def to_str(self) -> str:
56
+ """Returns the string representation of the model using alias"""
57
+ return pprint.pformat(self.model_dump(by_alias=True))
58
+
59
+ def to_json(self) -> str:
60
+ """Returns the JSON representation of the model using alias"""
61
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
62
+ return json.dumps(self.to_dict())
63
+
64
+ @classmethod
65
+ def from_json(cls, json_str: str) -> Optional[Self]:
66
+ """Create an instance of Boleto from a JSON string"""
67
+ return cls.from_dict(json.loads(json_str))
68
+
69
+ def to_dict(self) -> Dict[str, Any]:
70
+ """Return the dictionary representation of the model using alias.
71
+
72
+ This has the following differences from calling pydantic's
73
+ `self.model_dump(by_alias=True)`:
74
+
75
+ * `None` is only added to the output dict for nullable fields that
76
+ were set at model initialization. Other fields with value `None`
77
+ are ignored.
78
+ """
79
+ excluded_fields: Set[str] = set([
80
+ ])
81
+
82
+ _dict = self.model_dump(
83
+ by_alias=True,
84
+ exclude=excluded_fields,
85
+ exclude_none=True,
86
+ )
87
+ # override the default output from pydantic by calling `to_dict()` of payer
88
+ if self.payer:
89
+ _dict['payer'] = self.payer.to_dict()
90
+ # override the default output from pydantic by calling `to_dict()` of recipient
91
+ if self.recipient:
92
+ _dict['recipient'] = self.recipient.to_dict()
93
+ return _dict
94
+
95
+ @classmethod
96
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
97
+ """Create an instance of Boleto from a dict"""
98
+ if obj is None:
99
+ return None
100
+
101
+ if not isinstance(obj, dict):
102
+ return cls.model_validate(obj)
103
+
104
+ _obj = cls.model_validate({
105
+ "digitableLine": obj.get("digitableLine"),
106
+ "barcode": obj.get("barcode"),
107
+ "payer": BoletoPayer.from_dict(obj["payer"]) if obj.get("payer") is not None else None,
108
+ "recipient": BoletoRecipient.from_dict(obj["recipient"]) if obj.get("recipient") is not None else None,
109
+ "date": obj.get("date"),
110
+ "dueDate": obj.get("dueDate"),
111
+ "expirationDate": obj.get("expirationDate"),
112
+ "baseAmount": obj.get("baseAmount"),
113
+ "penaltyAmount": obj.get("penaltyAmount"),
114
+ "interestAmount": obj.get("interestAmount"),
115
+ "discountAmount": obj.get("discountAmount"),
116
+ "totalAmount": obj.get("totalAmount"),
117
+ "updatedAt": obj.get("updatedAt")
118
+ })
119
+ return _obj
120
+
121
+
@@ -0,0 +1,90 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pluggy API
5
+
6
+ Pluggy's main API to review data and execute connectors
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: hello@pluggy.ai
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from typing import Any, ClassVar, Dict, List
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class BoletoPayer(BaseModel):
27
+ """
28
+ Boleto payer information
29
+ """ # noqa: E501
30
+ tax_number: StrictStr = Field(description="Payer CPF or CNPJ", alias="taxNumber")
31
+ name: StrictStr = Field(description="Payer name")
32
+ __properties: ClassVar[List[str]] = ["taxNumber", "name"]
33
+
34
+ model_config = ConfigDict(
35
+ populate_by_name=True,
36
+ validate_assignment=True,
37
+ protected_namespaces=(),
38
+ )
39
+
40
+
41
+ def to_str(self) -> str:
42
+ """Returns the string representation of the model using alias"""
43
+ return pprint.pformat(self.model_dump(by_alias=True))
44
+
45
+ def to_json(self) -> str:
46
+ """Returns the JSON representation of the model using alias"""
47
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
+ return json.dumps(self.to_dict())
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> Optional[Self]:
52
+ """Create an instance of BoletoPayer from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self) -> Dict[str, Any]:
56
+ """Return the dictionary representation of the model using alias.
57
+
58
+ This has the following differences from calling pydantic's
59
+ `self.model_dump(by_alias=True)`:
60
+
61
+ * `None` is only added to the output dict for nullable fields that
62
+ were set at model initialization. Other fields with value `None`
63
+ are ignored.
64
+ """
65
+ excluded_fields: Set[str] = set([
66
+ ])
67
+
68
+ _dict = self.model_dump(
69
+ by_alias=True,
70
+ exclude=excluded_fields,
71
+ exclude_none=True,
72
+ )
73
+ return _dict
74
+
75
+ @classmethod
76
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
77
+ """Create an instance of BoletoPayer from a dict"""
78
+ if obj is None:
79
+ return None
80
+
81
+ if not isinstance(obj, dict):
82
+ return cls.model_validate(obj)
83
+
84
+ _obj = cls.model_validate({
85
+ "taxNumber": obj.get("taxNumber"),
86
+ "name": obj.get("name")
87
+ })
88
+ return _obj
89
+
90
+
@@ -0,0 +1,90 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pluggy API
5
+
6
+ Pluggy's main API to review data and execute connectors
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: hello@pluggy.ai
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from typing import Any, ClassVar, Dict, List
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class BoletoRecipient(BaseModel):
27
+ """
28
+ Boleto recipient information
29
+ """ # noqa: E501
30
+ tax_number: StrictStr = Field(description="Recipient CPF or CNPJ", alias="taxNumber")
31
+ name: StrictStr = Field(description="Recipient name")
32
+ __properties: ClassVar[List[str]] = ["taxNumber", "name"]
33
+
34
+ model_config = ConfigDict(
35
+ populate_by_name=True,
36
+ validate_assignment=True,
37
+ protected_namespaces=(),
38
+ )
39
+
40
+
41
+ def to_str(self) -> str:
42
+ """Returns the string representation of the model using alias"""
43
+ return pprint.pformat(self.model_dump(by_alias=True))
44
+
45
+ def to_json(self) -> str:
46
+ """Returns the JSON representation of the model using alias"""
47
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
+ return json.dumps(self.to_dict())
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> Optional[Self]:
52
+ """Create an instance of BoletoRecipient from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self) -> Dict[str, Any]:
56
+ """Return the dictionary representation of the model using alias.
57
+
58
+ This has the following differences from calling pydantic's
59
+ `self.model_dump(by_alias=True)`:
60
+
61
+ * `None` is only added to the output dict for nullable fields that
62
+ were set at model initialization. Other fields with value `None`
63
+ are ignored.
64
+ """
65
+ excluded_fields: Set[str] = set([
66
+ ])
67
+
68
+ _dict = self.model_dump(
69
+ by_alias=True,
70
+ exclude=excluded_fields,
71
+ exclude_none=True,
72
+ )
73
+ return _dict
74
+
75
+ @classmethod
76
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
77
+ """Create an instance of BoletoRecipient from a dict"""
78
+ if obj is None:
79
+ return None
80
+
81
+ if not isinstance(obj, dict):
82
+ return cls.model_validate(obj)
83
+
84
+ _obj = cls.model_validate({
85
+ "taxNumber": obj.get("taxNumber"),
86
+ "name": obj.get("name")
87
+ })
88
+ return _obj
89
+
90
+
@@ -39,7 +39,7 @@ class BulkPayment(BaseModel):
39
39
  callback_urls: Optional[PaymentRequestCallbackUrls] = Field(default=None, alias="callbackUrls")
40
40
  payment_url: StrictStr = Field(description="URL to begin the payment intent creation flow for this payment request", alias="paymentUrl")
41
41
  payment_requests: List[PaymentRequest] = Field(description="List of payment requests associated with the bulk payment", alias="paymentRequests")
42
- smart_account: SmartAccount = Field(alias="smartAccount")
42
+ smart_account: SmartAccount = Field(description="Smart account associated with the bulk payment", alias="smartAccount")
43
43
  __properties: ClassVar[List[str]] = ["id", "totalAmount", "status", "createdAt", "updatedAt", "callbackUrls", "paymentUrl", "paymentRequests", "smartAccount"]
44
44
 
45
45
  @field_validator('status')
@@ -0,0 +1,98 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pluggy API
5
+
6
+ Pluggy's main API to review data and execute connectors
7
+
8
+ The version of the OpenAPI document: 1.0.0
9
+ Contact: hello@pluggy.ai
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class CreateBoletoPaymentRequest(BaseModel):
28
+ """
29
+ Request with information to create a boleto payment request
30
+ """ # noqa: E501
31
+ description: Optional[StrictStr] = Field(default=None, description="Payment description")
32
+ digitable_line: StrictStr = Field(description="Boleto digitable line", alias="digitableLine")
33
+ callback_urls: Optional[PaymentRequestCallbackUrls] = Field(default=None, alias="callbackUrls")
34
+ customer_id: Optional[StrictStr] = Field(default=None, description="Customer identifier associated to the payment", alias="customerId")
35
+ __properties: ClassVar[List[str]] = ["description", "digitableLine", "callbackUrls", "customerId"]
36
+
37
+ model_config = ConfigDict(
38
+ populate_by_name=True,
39
+ validate_assignment=True,
40
+ protected_namespaces=(),
41
+ )
42
+
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
51
+ return json.dumps(self.to_dict())
52
+
53
+ @classmethod
54
+ def from_json(cls, json_str: str) -> Optional[Self]:
55
+ """Create an instance of CreateBoletoPaymentRequest from a JSON string"""
56
+ return cls.from_dict(json.loads(json_str))
57
+
58
+ def to_dict(self) -> Dict[str, Any]:
59
+ """Return the dictionary representation of the model using alias.
60
+
61
+ This has the following differences from calling pydantic's
62
+ `self.model_dump(by_alias=True)`:
63
+
64
+ * `None` is only added to the output dict for nullable fields that
65
+ were set at model initialization. Other fields with value `None`
66
+ are ignored.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ ])
70
+
71
+ _dict = self.model_dump(
72
+ by_alias=True,
73
+ exclude=excluded_fields,
74
+ exclude_none=True,
75
+ )
76
+ # override the default output from pydantic by calling `to_dict()` of callback_urls
77
+ if self.callback_urls:
78
+ _dict['callbackUrls'] = self.callback_urls.to_dict()
79
+ return _dict
80
+
81
+ @classmethod
82
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
83
+ """Create an instance of CreateBoletoPaymentRequest from a dict"""
84
+ if obj is None:
85
+ return None
86
+
87
+ if not isinstance(obj, dict):
88
+ return cls.model_validate(obj)
89
+
90
+ _obj = cls.model_validate({
91
+ "description": obj.get("description"),
92
+ "digitableLine": obj.get("digitableLine"),
93
+ "callbackUrls": PaymentRequestCallbackUrls.from_dict(obj["callbackUrls"]) if obj.get("callbackUrls") is not None else None,
94
+ "customerId": obj.get("customerId")
95
+ })
96
+ return _obj
97
+
98
+
@@ -20,6 +20,7 @@ import json
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr, field_validator
22
22
  from typing import Any, ClassVar, Dict, List, Optional, Union
23
+ from pluggy_sdk.models.payment_intent_parameter import PaymentIntentParameter
23
24
  from typing import Optional, Set
24
25
  from typing_extensions import Self
25
26
 
@@ -29,9 +30,9 @@ class CreatePaymentIntent(BaseModel):
29
30
  """ # noqa: E501
30
31
  payment_request_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the payment request associated to the payment intent", alias="paymentRequestId")
31
32
  bulk_payment_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the bulk payment associated to the payment intent", alias="bulkPaymentId")
32
- parameters: Optional[Dict[str, Any]] = None
33
+ parameters: Optional[PaymentIntentParameter] = None
33
34
  connector_id: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Primary identifier of the connector associated to the payment intent", alias="connectorId")
34
- payment_method: Optional[StrictStr] = Field(default=None, description="Payment method can be PIS (Payment Initiation) or PIX (PIX QR flow), if PIX selected only `bulkPaymentId` is required, if PIS selected only `paymentRequestId` or `bulkPaymentId` are required with `connectorId`, `parameters` and `paymentMethod`", alias="paymentMethod")
35
+ payment_method: Optional[StrictStr] = Field(default=None, description="Payment method can be PIS (Payment Initiation) or PIX (PIX QR flow), if PIX selected `bulkPaymentId` or a `paymentRequest` with smartAccountId attached will be accepted", alias="paymentMethod")
35
36
  __properties: ClassVar[List[str]] = ["paymentRequestId", "bulkPaymentId", "parameters", "connectorId", "paymentMethod"]
36
37
 
37
38
  @field_validator('payment_method')
@@ -31,7 +31,7 @@ class CreatePaymentRecipient(BaseModel):
31
31
  tax_number: Optional[StrictStr] = Field(default=None, description="Account owner tax number. Can be CPF or CNPJ (only numbers). Send only when the pixKey is not sent.", alias="taxNumber")
32
32
  name: Optional[StrictStr] = Field(default=None, description="Account owner name. Send only this when the pixKey is not sent.")
33
33
  payment_institution_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the institution associated to the payment recipient. Send only when the pixKey is not sent.", alias="paymentInstitutionId")
34
- account: Optional[PaymentRecipientAccount] = None
34
+ account: Optional[PaymentRecipientAccount] = Field(default=None, description="Recipient's bank account destination. Send only if the pixKey is not sent.")
35
35
  is_default: Optional[StrictBool] = Field(default=None, description="Indicates if the recipient is the default one", alias="isDefault")
36
36
  pix_key: Optional[StrictStr] = Field(default=None, description="Pix key associated with the payment recipient", alias="pixKey")
37
37
  __properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account", "isDefault", "pixKey"]
@@ -34,7 +34,8 @@ class CreatePaymentRequest(BaseModel):
34
34
  recipient_id: Optional[StrictStr] = Field(default=None, description="Payment receiver identifier", alias="recipientId")
35
35
  customer_id: Optional[StrictStr] = Field(default=None, description="Customer identifier associated to the payment", alias="customerId")
36
36
  client_payment_id: Optional[StrictStr] = Field(default=None, description="Your payment identifier", alias="clientPaymentId")
37
- __properties: ClassVar[List[str]] = ["amount", "description", "callbackUrls", "recipientId", "customerId", "clientPaymentId"]
37
+ smart_account_id: Optional[StrictStr] = Field(default=None, description="Smart account identifier associated to the payment, used to be able to use PIX Qr method", alias="smartAccountId")
38
+ __properties: ClassVar[List[str]] = ["amount", "description", "callbackUrls", "recipientId", "customerId", "clientPaymentId", "smartAccountId"]
38
39
 
39
40
  model_config = ConfigDict(
40
41
  populate_by_name=True,
@@ -95,7 +96,8 @@ class CreatePaymentRequest(BaseModel):
95
96
  "callbackUrls": PaymentRequestCallbackUrls.from_dict(obj["callbackUrls"]) if obj.get("callbackUrls") is not None else None,
96
97
  "recipientId": obj.get("recipientId"),
97
98
  "customerId": obj.get("customerId"),
98
- "clientPaymentId": obj.get("clientPaymentId")
99
+ "clientPaymentId": obj.get("clientPaymentId"),
100
+ "smartAccountId": obj.get("smartAccountId")
99
101
  })
100
102
  return _obj
101
103
 
@@ -53,7 +53,7 @@ class Investment(BaseModel):
53
53
  amount_profit: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Profit/Loss to date over the investment", alias="amountProfit")
54
54
  amount_withdrawal: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The amount available to withdraw", alias="amountWithdrawal")
55
55
  amount_original: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Amount originally invested", alias="amountOriginal")
56
- metadata: Optional[InvestmentMetadata] = None
56
+ metadata: Optional[InvestmentMetadata] = Field(default=None, description="Security Portability details")
57
57
  transactions: Optional[List[InvestmentTransaction]] = Field(default=None, description="(DEPRECATED: this field will be removed for new applications created from 21st March 2023 onward. Use the paginated `GET /investment/{id}/transactions` endpoint instead.) Transactions made on the investment (Buy, Sell, Transfer, Tax)")
58
58
  due_date: Optional[datetime] = Field(default=None, description="Expiration Date", alias="dueDate")
59
59
  issuer: Optional[StrictStr] = Field(default=None, description="The entity that issued the investment")
@@ -20,6 +20,7 @@ import json
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List, Optional
23
+ from pluggy_sdk.models.company import Company
23
24
  from typing import Optional, Set
24
25
  from typing_extensions import Self
25
26
 
@@ -31,7 +32,7 @@ class InvestmentMetadata(BaseModel):
31
32
  proposal_number: Optional[StrictStr] = Field(default=None, description="Previdencial proposal number", alias="proposalNumber")
32
33
  process_number: Optional[StrictStr] = Field(default=None, description="Number of the process of a previdencia", alias="processNumber")
33
34
  fund_name: Optional[StrictStr] = Field(default=None, description="Name of the fund associated with the previdencia.", alias="fundName")
34
- insurer: Optional[Dict[str, Any]] = None
35
+ insurer: Optional[Company] = Field(default=None, description="Insurer of the Security Investment")
35
36
  __properties: ClassVar[List[str]] = ["taxRegime", "proposalNumber", "processNumber", "fundName", "insurer"]
36
37
 
37
38
  model_config = ConfigDict(
pluggy_sdk/models/loan.py CHANGED
@@ -59,7 +59,7 @@ class Loan(BaseModel):
59
59
  contracted_finance_charges: Optional[List[LoanContractedFinanceCharge]] = Field(default=None, description="List that brings the charges agreed in the contract", alias="contractedFinanceCharges")
60
60
  warranties: Optional[List[LoanWarranty]] = None
61
61
  installments: Optional[LoanInstallments] = None
62
- payments: Optional[LoanPayments] = None
62
+ payments: Optional[LoanPayments] = Field(default=None, description="Loan contract payment data")
63
63
  __properties: ClassVar[List[str]] = ["id", "itemId", "contractNumber", "ipocCode", "productName", "type", "date", "contractDate", "disbursementDates", "settlementDate", "contractAmount", "currencyCode", "dueDate", "installmentPeriodicity", "installmentPeriodicityAdditionalInfo", "firstInstallmentDueDate", "CET", "amortizationScheduled", "amortizationScheduledAdditionalInfo", "cnpjConsignee", "interestRates", "contractedFees", "contractedFinanceCharges", "warranties", "installments", "payments"]
64
64
 
65
65
  @field_validator('installment_periodicity')
@@ -25,7 +25,7 @@ from typing_extensions import Self
25
25
 
26
26
  class LoanInstallmentBalloonPaymentAmount(BaseModel):
27
27
  """
28
- LoanInstallmentBalloonPaymentAmount
28
+ Monetary value of the non-regular installment due
29
29
  """ # noqa: E501
30
30
  value: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Monetary value of the non-regular installment due")
31
31
  currency_code: Optional[StrictStr] = Field(default=None, description="Code referencing the currency of the installment", alias="currencyCode")
@@ -30,7 +30,7 @@ class LoanInstallments(BaseModel):
30
30
  """ # noqa: E501
31
31
  type_number_of_installments: Optional[StrictStr] = Field(default=None, description="Type of total term of the contract referring to the type of credit informed", alias="typeNumberOfInstallments")
32
32
  total_number_of_installments: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Total term according to the type referring to the type of credit informed", alias="totalNumberOfInstallments")
33
- type_contract_remaining: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Type of remaining term of the contract referring to the type of credit informed", alias="typeContractRemaining")
33
+ type_contract_remaining: Optional[StrictStr] = Field(default=None, description="Type of remaining term of the contract referring to the type of credit informed", alias="typeContractRemaining")
34
34
  contract_remaining_number: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Remaining term according to the type referring to the credit type informed", alias="contractRemainingNumber")
35
35
  paid_installments: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Number of paid installments", alias="paidInstallments")
36
36
  due_installments: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Number of due installments", alias="dueInstallments")
@@ -54,8 +54,8 @@ class LoanInstallments(BaseModel):
54
54
  if value is None:
55
55
  return value
56
56
 
57
- if value not in set([null, null, null, null, null, null]):
58
- raise ValueError("must be one of enum values (null, null, null, null, null, null)")
57
+ if value not in set(['DAY', 'WEEK', 'MONTH', 'YEAR', 'WITHOUT_TOTAL_PERIOD', 'WITHOUT_REMAINING_PERIOD']):
58
+ raise ValueError("must be one of enum values ('DAY', 'WEEK', 'MONTH', 'YEAR', 'WITHOUT_TOTAL_PERIOD', 'WITHOUT_REMAINING_PERIOD')")
59
59
  return value
60
60
 
61
61
  model_config = ConfigDict(
@@ -27,7 +27,7 @@ from typing_extensions import Self
27
27
 
28
28
  class LoanPaymentReleaseOverParcel(BaseModel):
29
29
  """
30
- LoanPaymentReleaseOverParcel
30
+ Object of fees and charges that were paid outside the installment
31
31
  """ # noqa: E501
32
32
  fees: Optional[List[LoanPaymentReleaseOverParcelFee]] = Field(default=None, description="List of fees that were paid outside the installment, only for single payment")
33
33
  charges: Optional[List[LoanPaymentReleaseOverParcelCharge]] = Field(default=None, description="List of charges that were paid out of installment")
@@ -20,6 +20,7 @@ import json
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List, Optional
23
+ from pluggy_sdk.models.document import Document
23
24
  from typing import Optional, Set
24
25
  from typing_extensions import Self
25
26
 
@@ -27,7 +28,7 @@ class PaymentDataParticipant(BaseModel):
27
28
  """
28
29
  Participant of the payment data
29
30
  """ # noqa: E501
30
- document_number: Optional[StrictStr] = Field(default=None, alias="documentNumber")
31
+ document_number: Optional[Document] = Field(default=None, alias="documentNumber")
31
32
  name: Optional[StrictStr] = Field(default=None, description="Fullname of the participant")
32
33
  account_number: Optional[StrictStr] = Field(default=None, description="Account number on the branch", alias="accountNumber")
33
34
  branch_number: Optional[StrictStr] = Field(default=None, description="Agency number", alias="branchNumber")
@@ -36,13 +36,13 @@ class PaymentIntent(BaseModel):
36
36
  status: Optional[StrictStr] = Field(default=None, description="Payment intent status")
37
37
  created_at: Optional[datetime] = Field(default=None, description="Date when the payment intent was created", alias="createdAt")
38
38
  updated_at: Optional[datetime] = Field(default=None, description="Date when the payment intent was updated", alias="updatedAt")
39
- payment_request: Optional[PaymentRequest] = Field(default=None, alias="paymentRequest")
40
- bulk_payment: Optional[BulkPayment] = Field(default=None, alias="bulkPayment")
41
- connector: Optional[Connector] = None
39
+ payment_request: Optional[PaymentRequest] = Field(default=None, description="Payment request associated to the payment intent", alias="paymentRequest")
40
+ bulk_payment: Optional[BulkPayment] = Field(default=None, description="Bulk Payment associated to the payment intent", alias="bulkPayment")
41
+ connector: Optional[Connector] = Field(default=None, description="Connector associated to the payment intent")
42
42
  consent_url: Optional[StrictStr] = Field(default=None, description="Url to authorize the payment intent", alias="consentUrl")
43
43
  reference_id: Optional[StrictStr] = Field(default=None, description="Pix id related to the payment intent", alias="referenceId")
44
44
  payment_method: Optional[StrictStr] = Field(default='PIS', description="Payment method can be PIS (Payment Initiation) or PIX", alias="paymentMethod")
45
- pix_data: Optional[PixData] = Field(default=None, alias="pixData")
45
+ pix_data: Optional[PixData] = Field(default=None, description="Pix data related to the payment intent (only applies for PIX payment method)", alias="pixData")
46
46
  __properties: ClassVar[List[str]] = ["id", "status", "createdAt", "updatedAt", "paymentRequest", "bulkPayment", "connector", "consentUrl", "referenceId", "paymentMethod", "pixData"]
47
47
 
48
48
  @field_validator('status')
@@ -33,8 +33,8 @@ class PaymentReceipt(BaseModel):
33
33
  payment_request_id: StrictStr = Field(description="Payment request identifier", alias="paymentRequestId")
34
34
  expires_at: datetime = Field(description="Date when the payment receipt expires", alias="expiresAt")
35
35
  receipt_url: StrictStr = Field(description="URL to download the payment receipt", alias="receiptUrl")
36
- creditor: PaymentReceiptPerson
37
- debtor: PaymentReceiptPerson
36
+ creditor: PaymentReceiptPerson = Field(description="Creditor bank account information")
37
+ debtor: PaymentReceiptPerson = Field(description="Debtor bank account information")
38
38
  amount: Union[StrictFloat, StrictInt] = Field(description="Payment amount")
39
39
  description: Optional[StrictStr] = Field(default=None, description="Payment description")
40
40
  reference_id: StrictStr = Field(description="Payment reference identifier", alias="referenceId")
@@ -32,7 +32,7 @@ class PaymentRecipient(BaseModel):
32
32
  id: StrictStr = Field(description="Primary identifier")
33
33
  tax_number: StrictStr = Field(description="Account owner tax number. Can be CPF or CNPJ (only numbers).", alias="taxNumber")
34
34
  name: StrictStr = Field(description="Account owner name.")
35
- payment_institution: PaymentInstitution = Field(alias="paymentInstitution")
35
+ payment_institution: PaymentInstitution = Field(description="Recipient's bank account destination.", alias="paymentInstitution")
36
36
  is_default: StrictBool = Field(description="Indicates if the recipient is the default one", alias="isDefault")
37
37
  account: PaymentRecipientAccount
38
38
  pix_key: Optional[StrictStr] = Field(default=None, description="Pix key associated with the payment recipient", alias="pixKey")
@@ -21,6 +21,7 @@ import json
21
21
  from datetime import datetime
22
22
  from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr, field_validator
23
23
  from typing import Any, ClassVar, Dict, List, Optional, Union
24
+ from pluggy_sdk.models.boleto import Boleto
24
25
  from pluggy_sdk.models.payment_request_callback_urls import PaymentRequestCallbackUrls
25
26
  from typing import Optional, Set
26
27
  from typing_extensions import Self
@@ -40,7 +41,8 @@ class PaymentRequest(BaseModel):
40
41
  recipient_id: Optional[StrictStr] = Field(default=None, description="Payment receiver identifier", alias="recipientId")
41
42
  payment_url: StrictStr = Field(description="URL to begin the payment intent creation flow for this payment request", alias="paymentUrl")
42
43
  pix_qr_code: Optional[StrictStr] = Field(default=None, description="Pix QR code generated by the payment receiver", alias="pixQrCode")
43
- __properties: ClassVar[List[str]] = ["id", "amount", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl", "pixQrCode"]
44
+ boleto: Optional[Boleto] = None
45
+ __properties: ClassVar[List[str]] = ["id", "amount", "description", "status", "clientPaymentId", "createdAt", "updatedAt", "callbackUrls", "recipientId", "paymentUrl", "pixQrCode", "boleto"]
44
46
 
45
47
  @field_validator('status')
46
48
  def status_validate_enum(cls, value):
@@ -91,6 +93,9 @@ class PaymentRequest(BaseModel):
91
93
  # override the default output from pydantic by calling `to_dict()` of callback_urls
92
94
  if self.callback_urls:
93
95
  _dict['callbackUrls'] = self.callback_urls.to_dict()
96
+ # override the default output from pydantic by calling `to_dict()` of boleto
97
+ if self.boleto:
98
+ _dict['boleto'] = self.boleto.to_dict()
94
99
  return _dict
95
100
 
96
101
  @classmethod
@@ -113,7 +118,8 @@ class PaymentRequest(BaseModel):
113
118
  "callbackUrls": PaymentRequestCallbackUrls.from_dict(obj["callbackUrls"]) if obj.get("callbackUrls") is not None else None,
114
119
  "recipientId": obj.get("recipientId"),
115
120
  "paymentUrl": obj.get("paymentUrl"),
116
- "pixQrCode": obj.get("pixQrCode")
121
+ "pixQrCode": obj.get("pixQrCode"),
122
+ "boleto": Boleto.from_dict(obj["boleto"]) if obj.get("boleto") is not None else None
117
123
  })
118
124
  return _obj
119
125
 
@@ -31,7 +31,7 @@ class UpdatePaymentRecipient(BaseModel):
31
31
  tax_number: Optional[StrictStr] = Field(default=None, description="Account owner tax number. Can be CPF or CNPJ (only numbers). Send only if the recipient doesn't have a pixKey.", alias="taxNumber")
32
32
  name: Optional[StrictStr] = Field(default=None, description="Account owner name. Send only if the recipient doesn't have a pixKey.")
33
33
  payment_institution_id: Optional[StrictStr] = Field(default=None, description="Primary identifier of the institution associated to the payment recipient. Send only if the recipient doesn't have a pixKey.", alias="paymentInstitutionId")
34
- account: Optional[PaymentRecipientAccount] = None
34
+ account: Optional[PaymentRecipientAccount] = Field(default=None, description="Recipient's bank account destination. Send only if the recipient doesn't have a pixKey.")
35
35
  is_default: Optional[StrictBool] = Field(default=None, description="Indicates if the recipient is the default one", alias="isDefault")
36
36
  pix_key: Optional[StrictStr] = Field(default=None, description="Pix key associated with the payment recipient", alias="pixKey")
37
37
  __properties: ClassVar[List[str]] = ["taxNumber", "name", "paymentInstitutionId", "account", "isDefault", "pixKey"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pluggy-sdk
3
- Version: 1.0.0.post7
3
+ Version: 1.0.0.post9
4
4
  Summary: Pluggy API
5
5
  Home-page: https://github.com/diraol/pluggy-python
6
6
  Author: Pluggy
@@ -19,7 +19,7 @@ Pluggy's main API to review data and execute connectors
19
19
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
20
20
 
21
21
  - API version: 1.0.0
22
- - Package version: 1.0.0.post7
22
+ - Package version: 1.0.0.post9
23
23
  - Generator version: 7.6.0-SNAPSHOT
24
24
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
25
25
  For more information, please visit [https://pluggy.ai](https://pluggy.ai)
@@ -163,6 +163,7 @@ Class | Method | HTTP request | Description
163
163
  *PaymentRecipientApi* | [**payment_recipients_institution_list**](docs/PaymentRecipientApi.md#payment_recipients_institution_list) | **GET** /payments/recipients/institutions | List Institutions
164
164
  *PaymentRecipientApi* | [**payment_recipients_list**](docs/PaymentRecipientApi.md#payment_recipients_list) | **GET** /payments/recipients | List
165
165
  *PaymentRequestApi* | [**payment_request_create**](docs/PaymentRequestApi.md#payment_request_create) | **POST** /payments/requests | Create
166
+ *PaymentRequestApi* | [**payment_request_create_boleto**](docs/PaymentRequestApi.md#payment_request_create_boleto) | **POST** /payments/requests/boleto | Create boleto payment request
166
167
  *PaymentRequestApi* | [**payment_request_create_pix_qr**](docs/PaymentRequestApi.md#payment_request_create_pix_qr) | **POST** /payments/requests/pix-qr | Create PIX QR payment request
167
168
  *PaymentRequestApi* | [**payment_request_delete**](docs/PaymentRequestApi.md#payment_request_delete) | **DELETE** /payments/requests/{id} | Delete
168
169
  *PaymentRequestApi* | [**payment_request_receipt_create**](docs/PaymentRequestApi.md#payment_request_receipt_create) | **POST** /payments/requests/{id}/receipts | Create
@@ -213,6 +214,9 @@ Class | Method | HTTP request | Description
213
214
  - [Bill](docs/Bill.md)
214
215
  - [BillFinanceCharge](docs/BillFinanceCharge.md)
215
216
  - [BillsList200Response](docs/BillsList200Response.md)
217
+ - [Boleto](docs/Boleto.md)
218
+ - [BoletoPayer](docs/BoletoPayer.md)
219
+ - [BoletoRecipient](docs/BoletoRecipient.md)
216
220
  - [BulkPayment](docs/BulkPayment.md)
217
221
  - [BulkPaymentsList200Response](docs/BulkPaymentsList200Response.md)
218
222
  - [Category](docs/Category.md)
@@ -226,6 +230,7 @@ Class | Method | HTTP request | Description
226
230
  - [ConnectorHealthDetails](docs/ConnectorHealthDetails.md)
227
231
  - [ConnectorListResponse](docs/ConnectorListResponse.md)
228
232
  - [ConnectorUserAction](docs/ConnectorUserAction.md)
233
+ - [CreateBoletoPaymentRequest](docs/CreateBoletoPaymentRequest.md)
229
234
  - [CreateBulkPayment](docs/CreateBulkPayment.md)
230
235
  - [CreateClientCategoryRule](docs/CreateClientCategoryRule.md)
231
236
  - [CreateItem](docs/CreateItem.md)
@@ -1,7 +1,7 @@
1
- pluggy_sdk/__init__.py,sha256=A3jUrNn0kzLHawHiGdyhvuLbJh34JFrVp705NDEjmc4,11800
2
- pluggy_sdk/api_client.py,sha256=dbPz0OD3no5i9H-a4cGW4QHBlu6ZXXTdH4QcTGbZzJ4,26305
1
+ pluggy_sdk/__init__.py,sha256=XYWoov00LASQE8ZM334cATO1wsjQZLM8XlYUiEkcpH0,12049
2
+ pluggy_sdk/api_client.py,sha256=wO1loAwJoghqtfHoicz6Kag_bIbUguWNPpZ257K1dq8,26305
3
3
  pluggy_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- pluggy_sdk/configuration.py,sha256=CiSvRKCd1j4qdFFonLXRvXvqLfGMDFFGvTQUa67iUj8,15330
4
+ pluggy_sdk/configuration.py,sha256=UzLjTe6lF17EptkhOvILueYrJcPBR9Bb1zOcTbeZ-kY,15330
5
5
  pluggy_sdk/exceptions.py,sha256=nnh92yDlGdY1-zRsb0vQLebe4oyhrO63RXCYBhbrhoU,5953
6
6
  pluggy_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  pluggy_sdk/rest.py,sha256=bul9ovAN4BXJwh9yRpC8xb9pZva6xIKmUD72sIQa2yM,9385
@@ -23,12 +23,12 @@ pluggy_sdk/api/loan_api.py,sha256=-SD37ZzfB9S2SaqyUl0Gg3Plko7olxmu04jcB2mA7Vg,20
23
23
  pluggy_sdk/api/payment_customer_api.py,sha256=qUiuhizeTkXMuISJTiaAVaTMycn_d1zNvAmc0uv2Vew,54784
24
24
  pluggy_sdk/api/payment_intent_api.py,sha256=jcf5dDrmMjSz90cQ9H-u1NaIHW0aATLs6nQyyRID1tc,32020
25
25
  pluggy_sdk/api/payment_recipient_api.py,sha256=icivhir7nkhkcnR-LLKsuJJGRydeGSEiDSeP-eX8LnU,77933
26
- pluggy_sdk/api/payment_request_api.py,sha256=9YjZ8odozaRvVjYga_fz2MbMY16HmxuIUVQ0u5UoYYE,94243
26
+ pluggy_sdk/api/payment_request_api.py,sha256=VtIZ15EcTHyAL4TbIq_CvIT_kHRe2WTEuwJnGHqXQpc,105085
27
27
  pluggy_sdk/api/portfolio_yield_api.py,sha256=R_Cz-1G0s7qOUltG-VOXi8GSCNceM1j4lmu9V7zM0jM,22320
28
28
  pluggy_sdk/api/smart_account_api.py,sha256=CNu4T-0xcPwMckHzrFgYLVqWU9kFMB7FnJpDah4ryZk,43323
29
29
  pluggy_sdk/api/transaction_api.py,sha256=EOqLMWbyLTz93FlzhvHF68DcJ4BAgJ6_81K1mmy4Qr0,37553
30
30
  pluggy_sdk/api/webhook_api.py,sha256=IRqHT_F6VVrMxE3JkXeXidNQnjORmC89xZLTzgpwZNQ,55525
31
- pluggy_sdk/models/__init__.py,sha256=gXGur8PMx8j_eh6fpOCPS8XHOiE4IBx3z6PAmwWkr8k,10015
31
+ pluggy_sdk/models/__init__.py,sha256=GKC0Nhd22GP0fBmxfdC-I9K1T-rPfAg9f3zQqiCPv5c,10264
32
32
  pluggy_sdk/models/account.py,sha256=olFI5wpLnLLE7OO22B4zlNzSAf5TP8kGPVmYar_VUdg,5536
33
33
  pluggy_sdk/models/accounts_list200_response.py,sha256=P-3r6PIEv0uV5gkeOVD5pcQOu2M-c2wi2zkMLN9hxdI,3417
34
34
  pluggy_sdk/models/acquirer_anticipation.py,sha256=_z-lkqKpAML1Tr60J8MoGnc3sN0AOXYPJaTk_DVmYNg,4617
@@ -53,7 +53,10 @@ pluggy_sdk/models/bank_data.py,sha256=mfNQfxIA0i2swgd3ODsaIgtMhBG_imQCNXEucaPewZ
53
53
  pluggy_sdk/models/bill.py,sha256=Y8OyTNUp7oBeEHG-xH0lq7PLA_NlnCw9kx5runjMjyk,4428
54
54
  pluggy_sdk/models/bill_finance_charge.py,sha256=HzAfznWSmKYuDWt7kHzTMlCXDN_kYZzD5uEMH2qRsUE,3776
55
55
  pluggy_sdk/models/bills_list200_response.py,sha256=PkG522y0madvJU4vmp7RZJxlrXmGWtwBXcHyeZACe5s,3392
56
- pluggy_sdk/models/bulk_payment.py,sha256=fr_kFz1fgekFyCe1b1fZQwlzRNQ7i4gUrPNyR7515dE,5604
56
+ pluggy_sdk/models/boleto.py,sha256=tD6vJcN_wJC4cKAiEPsvlltmh_jN3BWPTlkAY8ab6ak,5378
57
+ pluggy_sdk/models/boleto_payer.py,sha256=0zVxArLdsn9lQ68WcabB0oT4tD1QzTyKblN8aZxbjpo,2641
58
+ pluggy_sdk/models/boleto_recipient.py,sha256=O89GyVOLrJVrTg9_0CHZjmjdlp9blpsMl5QlioE-Z_U,2665
59
+ pluggy_sdk/models/bulk_payment.py,sha256=7O3FzQwA9BWwClAUgJPcP5w0Mne82UQpSBKnvEuGMog,5666
57
60
  pluggy_sdk/models/bulk_payments_list200_response.py,sha256=bPR8YYGBL1p5vcPpa4co2lSPeRyJeRebthD_mI0NCbA,3445
58
61
  pluggy_sdk/models/category.py,sha256=oFSunhtg1GY2iJKhbio0ZtPeiFAwvOY-mknLELuQkYw,3297
59
62
  pluggy_sdk/models/client_category_rule.py,sha256=MiJA4luKDsgTCfSV1jZj-MclCk46WF7kTt48uhSy_TY,3070
@@ -66,15 +69,16 @@ pluggy_sdk/models/connector_health.py,sha256=ZiWpsIT9dufUUL2EW1mc7XgR8wXGXV76zgv
66
69
  pluggy_sdk/models/connector_health_details.py,sha256=PhFQAkfS-R95jkKqvAGy_PQJ3NqzPyKPQmYTi5R1Cxo,3578
67
70
  pluggy_sdk/models/connector_list_response.py,sha256=PZp1tbF4gBZpSKjs2Tfb7Cq3FlCqUIOqlrn88Y-Ne8M,3362
68
71
  pluggy_sdk/models/connector_user_action.py,sha256=k1Y8DHn5zEVFRmTEVL7Z8J8js3i7G-aRf1zoCF-Vftw,3065
72
+ pluggy_sdk/models/create_boleto_payment_request.py,sha256=E2s1JErSVK9gUbf7e2F-4MgtHBIr2qS7ft3vg4YESLk,3546
69
73
  pluggy_sdk/models/create_bulk_payment.py,sha256=g5S2C_vtgvuTY9om2RvOZSebTXosp5WrzwdS4IbQMMs,3438
70
74
  pluggy_sdk/models/create_client_category_rule.py,sha256=w9dcSd3sLAAbCLoL-FUXHd_0hkclcfFD5fHwMpuITAY,2899
71
75
  pluggy_sdk/models/create_item.py,sha256=6CAefEt0OufD63Lz_I-rE8NKcTGwawkng-OU2Nc3EXA,4344
72
76
  pluggy_sdk/models/create_item_parameters.py,sha256=ZAT3HYQRIJMCTO6XRJtBFWLix2LrKrZTWnLtuYMw11k,5380
73
77
  pluggy_sdk/models/create_or_update_payment_customer.py,sha256=ZvN-Pa9LGAR33L5G4XFSbIUPP3RaUsOeD45K5oOKZ-U,3455
74
78
  pluggy_sdk/models/create_payment_customer_request_body.py,sha256=YvSSzXEW2yI7M9alWr4fHbPRqNvV4sxTUVp3FkMQSyU,3365
75
- pluggy_sdk/models/create_payment_intent.py,sha256=hmZ-iYKOzj6RrjIOL8p4kffyv93I1bXKR4SpZec7m54,4360
76
- pluggy_sdk/models/create_payment_recipient.py,sha256=JW8Wu-ZfDrEo_yASIgSE7m99tAVl8mUyTSQWENPKb-I,4172
77
- pluggy_sdk/models/create_payment_request.py,sha256=EaPPkdarRJYiIqUEmNzVaZhfLrE9guH9kVzBACEyEXg,3912
79
+ pluggy_sdk/models/create_payment_intent.py,sha256=MCBRy8n1xXnajR3Q4gksZ07Qk_VvtrCPaldTvkBEfUw,4371
80
+ pluggy_sdk/models/create_payment_recipient.py,sha256=gqsRNyirAW8fXBIAn6RYo9oY5NTjLlL9M69hJhGgUHw,4277
81
+ pluggy_sdk/models/create_payment_request.py,sha256=06Z_wx2Lb4SjgdRuj5n51MJUMC8kc6EStmqr0RcsEDE,4179
78
82
  pluggy_sdk/models/create_pix_qr_payment_request.py,sha256=gyRV61yUjf_K4WeihOoBSQySS2NODl2sl4STITpMuIA,3354
79
83
  pluggy_sdk/models/create_smart_account_request.py,sha256=ZxfVt_baOOkWDaVB9ndDnmVMx3zwkVnbSRL9iCMfMSQ,3612
80
84
  pluggy_sdk/models/create_webhook.py,sha256=WmTF6jyUKisYewt2smFPoN6Di4zR5iZNX1_sjO4Lbfs,3632
@@ -89,24 +93,24 @@ pluggy_sdk/models/identity_relation.py,sha256=d_jRZfiYsJOeO5AOpfa8iAiupzGSmXZVxk
89
93
  pluggy_sdk/models/identity_response.py,sha256=AFQNeTjIVlKj-_N4-6cQ5NmxtAdbtl6RPlUSP-PiXrY,7152
90
94
  pluggy_sdk/models/income_report.py,sha256=MscdLVudpzaySJ__mKCBVD0vJcHoOKVIYyFJ6xaNS5U,2788
91
95
  pluggy_sdk/models/income_reports_response.py,sha256=d4Ppt8s47DgivjIviZ5-4kamEbABoPPHTcHt4NvhvIo,3514
92
- pluggy_sdk/models/investment.py,sha256=ndgdfhUbGWWW3rvngnDtUS_7sy80804rSETc_1Fvsgc,11050
96
+ pluggy_sdk/models/investment.py,sha256=qeQXYEI57R-AVNtb-9ILCAMl3DhxTOvfuxD36lnf-Vk,11109
93
97
  pluggy_sdk/models/investment_expenses.py,sha256=Tggx0ZhQV-EF1amRK5Qc-qTGMjw1bUkM4bo3re18OCk,5224
94
- pluggy_sdk/models/investment_metadata.py,sha256=q2G_62-Zuw1ZwrfA6rlxq5c1QscF87JMjKnaYrmU24c,3592
98
+ pluggy_sdk/models/investment_metadata.py,sha256=iPjyP8eP7IM6Yp2angdHGN9ZrRlbIa4m9eO8XDxYQU8,3696
95
99
  pluggy_sdk/models/investment_transaction.py,sha256=sxdtNZ0ppU34lOqWDnK5r6zFmVOItVIaGv0dCcd-8yk,4733
96
100
  pluggy_sdk/models/investments_list200_response.py,sha256=m2PraWmNbGIMbw_9Jw7-IKSGwyuiH8u95lo_VGKdM8I,3434
97
101
  pluggy_sdk/models/item.py,sha256=yKW3WFybiQDDnnphM6aRFRRpizpG-vt9EDPI2WzkPHc,7162
98
102
  pluggy_sdk/models/item_creation_error_response.py,sha256=n_AF0t3rg1XK9H1P_LHDalrUBK6uAQeR5aEpEe1vNOc,3586
99
103
  pluggy_sdk/models/item_error.py,sha256=2wbKBj82sw3NPhNqxCCnw-c15-QuFhy5Ywe29h2HicQ,3155
100
104
  pluggy_sdk/models/item_options.py,sha256=cTRMzwsK1JUQvTAsKeENOy7qEyt4NJ01zSf8wZ62sgo,2882
101
- pluggy_sdk/models/loan.py,sha256=HRAELIYaRWN-tZCvd5EiPvGKQ0DsqRjYjzCYbywZZF0,11967
105
+ pluggy_sdk/models/loan.py,sha256=NI7wBLGGlhFQMWDstJaFX5I-ac9V4gjjAIp2FtdHIQs,12024
102
106
  pluggy_sdk/models/loan_contracted_fee.py,sha256=k2EHfnbElL7scRmPQSKmzZ3oSxh50Z9wtAPe2Q2Oqzw,4205
103
107
  pluggy_sdk/models/loan_contracted_finance_charge.py,sha256=-2cHDwe9IfcWxtjLaL1Vs0PdWsqMv5RGO_Cx2fo3dj0,3153
104
108
  pluggy_sdk/models/loan_installment_balloon_payment.py,sha256=W9WH53-m8pz1AArlHri8-pbxNREo92quYLglTUeWCVk,3202
105
- pluggy_sdk/models/loan_installment_balloon_payment_amount.py,sha256=GdWUf4TnLQ4GnZ7RPfMwWz9Pj5G3O41cUyniKygYwr8,2922
106
- pluggy_sdk/models/loan_installments.py,sha256=E5GCogAaNmoqcP2D6JOJ3Xml8dWf4Rcx7xHVGvonGnc,6117
109
+ pluggy_sdk/models/loan_installment_balloon_payment_amount.py,sha256=n2W97p1QrZmrcseGJfkQCFMMCtSp37bMElyWVylfL4c,2936
110
+ pluggy_sdk/models/loan_installments.py,sha256=_viUM0w9h4Xbq2X9eSJ1BAlXN0VJdRvCvLi-TDrHPGA,6193
107
111
  pluggy_sdk/models/loan_interest_rate.py,sha256=z2sL9_0Q8io4p3wwF6jjmOJ9Yt9gNcZr5YHwxVrTNKQ,6278
108
112
  pluggy_sdk/models/loan_payment_release.py,sha256=Q9TSd4bHl9vu6W4mJatkYeiblmUCKI2LgUzmvMLRPjA,4233
109
- pluggy_sdk/models/loan_payment_release_over_parcel.py,sha256=efttZY4A0fze979aLWvD2p6mOk16B9km6xLHa9yj4UM,3882
113
+ pluggy_sdk/models/loan_payment_release_over_parcel.py,sha256=nXFeAmSrPP2oi5AtRzhkfkxjdM2jIPOXn_PHO6j0T1E,3919
110
114
  pluggy_sdk/models/loan_payment_release_over_parcel_charge.py,sha256=BieU1pled7qC_5zKW3xwX-_Z4N1gBl3CJOmWkrRYETo,3230
111
115
  pluggy_sdk/models/loan_payment_release_over_parcel_fee.py,sha256=o9F2FuGgy-Ht93XrFqLbdHxB34RYb6qH0e-yGnkJi6A,2988
112
116
  pluggy_sdk/models/loan_payments.py,sha256=s3IOiaTB-HsAG0qo_iUfdwhkNhYsGvQs7fK4pGR07Pc,3377
@@ -127,19 +131,19 @@ pluggy_sdk/models/parameter_validation_response.py,sha256=Tji_0tM46719s1oBmF9Pma
127
131
  pluggy_sdk/models/payment_customer.py,sha256=ex6-H5-hXd04Q39gJVPIYvnAVXp8bhQjg3-9fi2HBaY,3413
128
132
  pluggy_sdk/models/payment_customers_list200_response.py,sha256=l1n0ukgFYxTvZE5RW1Sc4Ae-vr8hx3xE9COb6_FauQ0,3481
129
133
  pluggy_sdk/models/payment_data.py,sha256=uD2IjAS_sp_sr5ag9727MPUO7rPro4xfWVBQlHY2LfQ,4087
130
- pluggy_sdk/models/payment_data_participant.py,sha256=uJjbYf8efeEvRp0QOIiQp7QQrYKeJpAQs-XI9ViKvOk,3793
134
+ pluggy_sdk/models/payment_data_participant.py,sha256=u9wzgDaV5u1ZEr1b9n_xLaHtaYSx17gXdiwwREpbZQg,3840
131
135
  pluggy_sdk/models/payment_institution.py,sha256=hpnfHLCvdsiwxznKYOtig1sfjYjnb6r0wuoZV0j424Q,3463
132
- pluggy_sdk/models/payment_intent.py,sha256=lETC3q4RuPG1Zj1y5go1gJPH-t10nW232Rl_UNR4UCs,6691
136
+ pluggy_sdk/models/payment_intent.py,sha256=wSEOFlU1bvqe-g4ir7XsRBfgjksbqIxWAS54vCgI2VM,6981
133
137
  pluggy_sdk/models/payment_intent_parameter.py,sha256=WNkeR3mCL9oLeriu5wopL5DAhcsnUsMb_EV8ZZJaXDA,2694
134
138
  pluggy_sdk/models/payment_intents_list200_response.py,sha256=jcMQcYmIdwGLhct3dkgvwbhqhb9-5Fe9dsnIZpPGM3c,3463
135
- pluggy_sdk/models/payment_receipt.py,sha256=NAVIj2yvh30JDOml9i7_qNiRPXd-9SVrG69vho_Jujs,4472
139
+ pluggy_sdk/models/payment_receipt.py,sha256=IcxlGTA8knKwJ95AKMjYLXo_7UrdXAuHGOiiGhU6waw,4584
136
140
  pluggy_sdk/models/payment_receipt_bank_account.py,sha256=eCDX7EPFmNErKl8x8LAZSGnlT8Ii7kHL4th6pVaU_9E,2881
137
141
  pluggy_sdk/models/payment_receipt_person.py,sha256=9eHiWC33eisDSZJgHW6ho_xD2ekaMuzq8AdvVEt5dUE,3246
138
- pluggy_sdk/models/payment_recipient.py,sha256=bOJvgLFpzPsiEV_atDrFb9jaGLA9sc8fF94C5gBWRjc,4159
142
+ pluggy_sdk/models/payment_recipient.py,sha256=PKpjebsFXZBMQphfF0bragOYzn4ym2V504BWMDhgeF8,4212
139
143
  pluggy_sdk/models/payment_recipient_account.py,sha256=eSnsoBv382LhyjMu172GXsZsBb1M1Ig0iim1dmAPCX0,3177
140
144
  pluggy_sdk/models/payment_recipients_institution_list200_response.py,sha256=a-gty_usP5fMRajNCL7zIPBO1WqWa1zwIhJgCDXMTF0,3544
141
145
  pluggy_sdk/models/payment_recipients_list200_response.py,sha256=9r8qMLzGDumoGG0HWfmQbhNC4kGjzBLZPz_6-YNzb08,3490
142
- pluggy_sdk/models/payment_request.py,sha256=TJKlKc-fh5Q2sxyZlfE8YSF9-T6i3iIV-xeG3sY-6TI,5016
146
+ pluggy_sdk/models/payment_request.py,sha256=O9c_N_8sJ4Y5xp5vSsL4SfANQ1tIv0qtVsuFZ26RtGo,5365
143
147
  pluggy_sdk/models/payment_request_callback_urls.py,sha256=EneGXM6_0zH4TehYNf9-OsmbEEMwsh8RLvGKEqjCvJE,3085
144
148
  pluggy_sdk/models/payment_request_receipt_list200_response.py,sha256=SCi20HZ0moUygGcGOHomevunrWJfQb3D6wTg_YjB6pI,3496
145
149
  pluggy_sdk/models/payment_requests_list200_response.py,sha256=0lAdZH19ZAeWYPdsQ-E0bREOZ0iDon7h96kI8xUTmYc,3472
@@ -156,13 +160,13 @@ pluggy_sdk/models/status_detail_product_warning.py,sha256=LFYFdkpQxvS5W2Kj3cxGGv
156
160
  pluggy_sdk/models/transaction.py,sha256=a9B3D6fwMZJcJxNEtWPF7IhQT-f5SfuUJfqmL0nMCJI,6919
157
161
  pluggy_sdk/models/update_item.py,sha256=zlSVOxAgzCERzCjaIViapLzbi8nCAfz2LndU9dumkFM,4136
158
162
  pluggy_sdk/models/update_item_parameters.py,sha256=yeIMinw_yVyCr9OxyZcxEe-17zCNNoKK8MkysO7yDcc,5324
159
- pluggy_sdk/models/update_payment_recipient.py,sha256=xTeosGiNsvMQWUX-bJHoEfkrp6ybki_ZBUGsE3WkycM,4069
163
+ pluggy_sdk/models/update_payment_recipient.py,sha256=CvKd2orRdEYgroSy42bkzxqiJ_JjELQhnxwf7R7bx3Y,4187
160
164
  pluggy_sdk/models/update_payment_request.py,sha256=T69l1LZAOn2Zbc7Vlaat5eiB-iuv2G_VMYuqOQBNR78,3936
161
165
  pluggy_sdk/models/update_transaction.py,sha256=979zai0z2scYygWA7STBzZBjnWg6zoQFjNpgso7fIqM,2590
162
166
  pluggy_sdk/models/webhook.py,sha256=2KV31zqFfHMzYzdrfVW7Sam6BsKigdQnPOKjsRiFYqI,3827
163
167
  pluggy_sdk/models/webhook_creation_error_response.py,sha256=SMvNMvJANk1NTn9BEugfwRtnEsJuoMsFo8tVvci3ayw,2681
164
168
  pluggy_sdk/models/webhooks_list200_response.py,sha256=DITv0Fg0S1Jl8k9sSdKKwhWmzp0TmMmrJjQqgo36yL0,3360
165
- pluggy_sdk-1.0.0.post7.dist-info/METADATA,sha256=Y60disyTWI7kQhB276D202a1pYp2Fh2h_UYRSwQdbCc,20885
166
- pluggy_sdk-1.0.0.post7.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
167
- pluggy_sdk-1.0.0.post7.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
168
- pluggy_sdk-1.0.0.post7.dist-info/RECORD,,
169
+ pluggy_sdk-1.0.0.post9.dist-info/METADATA,sha256=H3uQk8g504f6kh6YwkYwIzVoiCxoxjKgSdnuWPYLJZI,21249
170
+ pluggy_sdk-1.0.0.post9.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
171
+ pluggy_sdk-1.0.0.post9.dist-info/top_level.txt,sha256=4RLkSSAcNiYLnk0_CN2vRQoezuSTIa7VPuNnaVutZP0,11
172
+ pluggy_sdk-1.0.0.post9.dist-info/RECORD,,