Skip to content

Commit

Permalink
Add in common PaymentToken dataclass. (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 authored May 6, 2024
1 parent 6880382 commit 71912ef
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions python/src/sbc_common_components/utils/dataclasses.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from dataclasses import asdict, dataclass
from typing import Optional


@dataclass
class PaymentToken:

This comment has been minimized.

Copy link
@seeker25

seeker25 May 6, 2024

Author Collaborator

image

"""Payment Token payload common interface for LEAR and Names."""

id: Optional[str] = None
status_code: Optional[str] = None
filing_identifier: Optional[str] = None
corp_type_code: Optional[str] = None

0 comments on commit 71912ef

Please sign in to comment.