Closed MonishK2002 closed 1 month ago
@tangyang9464 @imp2002 please review
@tangyang9464 Hi Casdoor Team, I have raised a pull request that addresses the following issues in the Plan entity of the Java Casdoor SDK:
I added the missing paymentProviders field, which is required to match the Golang implementation. This field is defined as a String[] in the Golang code.
I have updated the data type of the options field to String[], ensuring compatibility with the expected data types in the Golang codebase.
The pull request has been merged successfully. However, I noticed that the new version including these changes has not been released yet. Could you please release a new version of the Java Casdoor SDK that includes these updates?
Thank you for your assistance and for providing such a valuable tool.
… type
Description
This PR addresses the following issues in the
Plan
entity of the Java Casdoor SDK:paymentProviders
field, which is required to match the Golang implementation. This field is defined as aString[]
in the Golang code.options
field toString[]
, ensuring compatibility with the expected data types in the Golang codebase.Changes Made
public String[] paymentProviders;
in thePlan
class.options
field to `public String[] options;.Related Issue
This PR addresses the mismatch between the Java and Golang implementations regarding the
Plan
entity.Please review the changes and let me know if there are any suggestions or concerns.