Skip to content

Commit 1381f7f

Browse files
authored
Update examples.py
1 parent 738a804 commit 1381f7f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

examples.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ def main ():
10721072

10731073

10741074

1075-
# cancelar factura por referencias (cURL).
1075+
# cancelar factura por valores (cURL).
10761076
# curl --location --request DELETE 'https://localhost:7173/api/v4/invoices' \
10771077
# --header 'X-TENANT-KEY: e839651d-1765-4cd0-ba7f-547a4c20580f' \
10781078
# --header 'X-TIME-ZONE: America/Mexico_City' \
@@ -1097,7 +1097,7 @@ def main ():
10971097
# ]
10981098
# }'
10991099

1100-
# cancelar factura por referencias (Sdk).
1100+
# cancelar factura por valores (Sdk).
11011101
# cancel_request = CancelInvoiceRequest(
11021102
# invoice_uuid="9c6b21ad-ca15-4d69-86cf-c9e3c94cbd00",
11031103
# tin="FUNK671228PH6",
@@ -1123,7 +1123,7 @@ def main ():
11231123
# print(api_response)
11241124

11251125

1126-
# Cancelar factura por valores (cURL).
1126+
# Cancelar factura por referencias (cURL).
11271127
# curl --location --request DELETE 'https://localhost:7173/api/v4/invoices' \
11281128
# --header 'X-TENANT-KEY: e839651d-1765-4cd0-ba7f-547a4c20580f' \
11291129
# --header 'X-TIME-ZONE: America/Mexico_City' \
@@ -1135,7 +1135,7 @@ def main ():
11351135
# "replacementUuid": "de841944-bd4f-4bb8-adfe-2a2282787c62"
11361136
# }'
11371137

1138-
# Cancelar factura por valores (Sdk).
1138+
# Cancelar factura por referencias (Sdk).
11391139
# cancel_request = CancelInvoiceRequest(
11401140
# id="9de25514-25a2-4c59-85a3-143969c607b3",
11411141
# cancellation_reason_code="01",
@@ -1274,4 +1274,4 @@ def main ():
12741274

12751275

12761276
if __name__ == "__main__":
1277-
main()
1277+
main()

0 commit comments

Comments
 (0)