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
Construct a type with a set of properties K of type T
serialized_json_border
object
Construct a type with a set of properties K of type T
[optional]
Example
fromwallet.models.wtqr_code_design_create_paramsimportWTQRCodeDesignCreateParams# TODO update the JSON string belowjson="{}"# create an instance of WTQRCodeDesignCreateParams from a JSON stringwtqr_code_design_create_params_instance=WTQRCodeDesignCreateParams.from_json(json)
# print the JSON string representation of the objectprintWTQRCodeDesignCreateParams.to_json()
# convert the object into a dictwtqr_code_design_create_params_dict=wtqr_code_design_create_params_instance.to_dict()
# create an instance of WTQRCodeDesignCreateParams from a dictwtqr_code_design_create_params_form_dict=wtqr_code_design_create_params.from_dict(wtqr_code_design_create_params_dict)