Source code for pyrobale.objects.transaction

[docs] class Transaction: def __init__(self, id: str, status: str, userID: int, amount: int, createdAt: int):
[docs] self.id = id
[docs] self.status = status
[docs] self.userID = userID
[docs] self.amount = amount
[docs] self.createdAt = createdAt