(20241218) No tags sent (payment request and sms sending) fixed.
This commit is contained in:
@@ -190,7 +190,8 @@ class PGPaymentRequestData(BaseModel):
|
|||||||
|
|
||||||
tags: List[Any] | None = Field(
|
tags: List[Any] | None = Field(
|
||||||
description = "any no. of tags to apply to this payment record to make search and filtering easy later",
|
description = "any no. of tags to apply to this payment record to make search and filtering easy later",
|
||||||
default = None
|
default = None,
|
||||||
|
validate_default = True
|
||||||
)
|
)
|
||||||
|
|
||||||
# ┏┓ ┏•
|
# ┏┓ ┏•
|
||||||
|
|||||||
@@ -177,9 +177,9 @@ class SMSSendRequestHeaders(BaseModel):
|
|||||||
|
|
||||||
class SMSSendRequestData(BaseModel):
|
class SMSSendRequestData(BaseModel):
|
||||||
|
|
||||||
tokenKey: ObjectId = Field(description = "the auth token to use to send this message")
|
tokenKey: ObjectId
|
||||||
message: List[NimbusSMSIndiaMessage] | List[SavvyBulkSMSKenyaMessage]
|
message: List[NimbusSMSIndiaMessage] | List[SavvyBulkSMSKenyaMessage]
|
||||||
tags: List[Any] | None
|
tags: List[Any] | None = Field(default = None, validate_default = True)
|
||||||
|
|
||||||
# ┏┓ ┏•
|
# ┏┓ ┏•
|
||||||
# ┃ ┏┓┏┓╋┓┏┓
|
# ┃ ┏┓┏┓╋┓┏┓
|
||||||
|
|||||||
Reference in New Issue
Block a user