File tree Expand file tree Collapse file tree 7 files changed +0
-84
lines changed Expand file tree Collapse file tree 7 files changed +0
-84
lines changed Original file line number Diff line number Diff line change @@ -444,7 +444,6 @@ def __getattr__(name):
444
444
from stripe ._login_link import LoginLink as LoginLink
445
445
from stripe ._mandate import Mandate as Mandate
446
446
from stripe ._mandate_service import MandateService as MandateService
447
- from stripe ._margin import Margin as Margin
448
447
from stripe ._payment_intent import PaymentIntent as PaymentIntent
449
448
from stripe ._payment_intent_service import (
450
449
PaymentIntentService as PaymentIntentService ,
Original file line number Diff line number Diff line change 40
40
from stripe ._customer import Customer
41
41
from stripe ._discount import Discount
42
42
from stripe ._invoice_line_item import InvoiceLineItem
43
- from stripe ._margin import Margin
44
43
from stripe ._payment_intent import PaymentIntent
45
44
from stripe ._payment_method import PaymentMethod
46
45
from stripe ._quote import Quote
@@ -984,10 +983,6 @@ class TotalPretaxCreditAmount(StripeObject):
984
983
"""
985
984
The discount that was applied to get this pretax credit amount.
986
985
"""
987
- margin : Optional [ExpandableField ["Margin" ]]
988
- """
989
- The margin that was applied to get this pretax credit amount.
990
- """
991
986
type : Literal ["credit_balance_transaction" , "discount" ]
992
987
"""
993
988
Type of the pretax credit amount referenced.
Original file line number Diff line number Diff line change 17
17
if TYPE_CHECKING :
18
18
from stripe ._discount import Discount
19
19
from stripe ._invoice_item import InvoiceItem
20
- from stripe ._margin import Margin
21
20
from stripe ._plan import Plan
22
21
from stripe ._price import Price
23
22
from stripe ._subscription import Subscription
@@ -72,10 +71,6 @@ class PretaxCreditAmount(StripeObject):
72
71
"""
73
72
The discount that was applied to get this pretax credit amount.
74
73
"""
75
- margin : Optional [ExpandableField ["Margin" ]]
76
- """
77
- The margin that was applied to get this pretax credit amount.
78
- """
79
74
type : Literal ["credit_balance_transaction" , "discount" ]
80
75
"""
81
76
Type of the pretax credit amount referenced.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 81
81
stripe .LineItem .OBJECT_NAME : stripe .LineItem ,
82
82
stripe .LoginLink .OBJECT_NAME : stripe .LoginLink ,
83
83
stripe .Mandate .OBJECT_NAME : stripe .Mandate ,
84
- stripe .Margin .OBJECT_NAME : stripe .Margin ,
85
84
stripe .PaymentIntent .OBJECT_NAME : stripe .PaymentIntent ,
86
85
stripe .PaymentLink .OBJECT_NAME : stripe .PaymentLink ,
87
86
stripe .PaymentMethod .OBJECT_NAME : stripe .PaymentMethod ,
Original file line number Diff line number Diff line change 85
85
from stripe .api_resources .list_object import ListObject
86
86
from stripe .api_resources .login_link import LoginLink
87
87
from stripe .api_resources .mandate import Mandate
88
- from stripe .api_resources .margin import Margin
89
88
from stripe .api_resources .payment_intent import PaymentIntent
90
89
from stripe .api_resources .payment_link import PaymentLink
91
90
from stripe .api_resources .payment_method import PaymentMethod
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments