You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The LinkMetaResponseEntity defined the fields as follow:- upi_intent: Optional[StrictBool] = Field(None, description="If \"true\", link will directly open UPI Intent flow on mobile, and normal link flow elsewhere")
but the data server sending back after link generation is "link_meta" : { "payment_methods" : "", "upi_intent" : "false" },
The upi_intent coming as string from server and LinkMetaResponseEntity look for a bool, It fails the PGCreateLink even the link is created at cashfree side.
The text was updated successfully, but these errors were encountered:
The LinkMetaResponseEntity defined the fields as follow:-
upi_intent: Optional[StrictBool] = Field(None, description="If \"true\", link will directly open UPI Intent flow on mobile, and normal link flow elsewhere")
but the data server sending back after link generation is
"link_meta" : { "payment_methods" : "", "upi_intent" : "false" },
The upi_intent coming as string from server and LinkMetaResponseEntity look for a bool, It fails the PGCreateLink even the link is created at cashfree side.
The text was updated successfully, but these errors were encountered: