@@ -19,21 +19,21 @@ class CreditNoteCreateParams(TypedDict, total=False):
1919
2020 end_date : Annotated [Union [str , date , None ], PropertyInfo (format = "iso8601" )]
2121 """
22- An optional date string to specify the global credit note service period end
23- date in the customer's timezone. This will be applied to all line items. If not
24- provided, line items will use their original invoice line item service periods.
25- This date is inclusive.
22+ A date string to specify the global credit note service period end date in the
23+ customer's timezone. This will be applied to all line items that don't have
24+ their own individual service periods specified. If not provided, line items will
25+ use their original invoice line item service periods. This date is inclusive.
2626 """
2727
2828 memo : Optional [str ]
2929 """An optional memo to attach to the credit note."""
3030
3131 start_date : Annotated [Union [str , date , None ], PropertyInfo (format = "iso8601" )]
3232 """
33- An optional date string to specify the global credit note service period end
34- date in the customer's timezone. This will be applied to all line items. If not
35- provided, line items will use their original invoice line item service periods.
36- This date is inclusive.
33+ A date string to specify the global credit note service period start date in the
34+ customer's timezone. This will be applied to all line items that don't have
35+ their own individual service periods specified. If not provided, line items will
36+ use their original invoice line item service periods. This date is inclusive.
3737 """
3838
3939
@@ -46,18 +46,17 @@ class LineItem(TypedDict, total=False):
4646
4747 end_date : Annotated [Union [str , date , None ], PropertyInfo (format = "iso8601" )]
4848 """
49- An optional date string to specify this line item's credit note service period
50- end date in the customer's timezone. If provided, this will be used for this
51- specific line item. If not provided, will use the global end_date if available,
52- otherwise defaults to the original invoice line item's end date. This date is
53- inclusive.
49+ A date string to specify this line item's credit note service period end date in
50+ the customer's timezone. If provided, this will be used for this specific line
51+ item. If not provided, will use the global end_date if available, otherwise
52+ defaults to the original invoice line item's end date. This date is inclusive.
5453 """
5554
5655 start_date : Annotated [Union [str , date , None ], PropertyInfo (format = "iso8601" )]
5756 """
58- An optional date string to specify this line item's credit note service period
59- start date in the customer's timezone. If provided, this will be used for this
60- specific line item. If not provided, will use the global start_date if
61- available, otherwise defaults to the original invoice line item's start date.
62- This date is inclusive.
57+ A date string to specify this line item's credit note service period start date
58+ in the customer's timezone. If provided, this will be used for this specific
59+ line item. If not provided, will use the global start_date if available,
60+ otherwise defaults to the original invoice line item's start date. This date is
61+ inclusive.
6362 """
0 commit comments