File tree Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -38,4 +38,6 @@ class CredentialsClass(str, Enum):
3838 PIVI = "pivi"
3939 TRACKING_TAG = "trackingTag"
4040 TRANSACT = "transact"
41- FIOD2 = "fido2"
41+ FIOD2 = "fido2"
42+ BIOMETRIC = "biometric"
43+ APPLE_PASS = "applePass"
Original file line number Diff line number Diff line change 11""" Cardholder Update Builder exploration
22
3+ Example Usage:
4+
5+ add_card_href = CardTypeRef(href="https://api.example.com/cards/123")
6+ remove_card_href = HrefMixin(href="https://api.example.com/cards/456")
7+
8+ card_update_builder = CardholderUpdateBuilder()
9+ .add_card(add_card_href)
10+ .remove_card(remove_card_href)
11+ .build()
12+
313"""
414from ..ref .card import CardTypeRef
515
@@ -15,3 +25,4 @@ def add_card(self, card: CardTypeRef):
1525
1626 def remove_card (self , href : URL ):
1727 pass
28+
Original file line number Diff line number Diff line change 1+ """ Payload builder helpers
2+
3+
4+
5+
6+
7+ """
8+
9+ from pydantic import BaseModel , URL
10+
11+ class BaseRequestPayloadBuilder (BaseModel ):
12+ pass
You can’t perform that action at this time.
0 commit comments