| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] | |
| metadata | Dict[str, MetadataValue] | キーバリューの任意のデータを格納できます。20件まで登録可能で、空文字列を指定するとそのキーを削除できます。<a href="https://docs.pay.jp/v2/guide/developers/metadata\">詳細はメタデータのドキュメントを参照してください。</a> | [optional] |
from payjpv2.models.setup_flow_data_request import SetupFlowDataRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SetupFlowDataRequest from a JSON string
setup_flow_data_request_instance = SetupFlowDataRequest.from_json(json)
# print the JSON string representation of the object
print(SetupFlowDataRequest.to_json())
# convert the object into a dict
setup_flow_data_request_dict = setup_flow_data_request_instance.to_dict()
# create an instance of SetupFlowDataRequest from a dict
setup_flow_data_request_from_dict = SetupFlowDataRequest.from_dict(setup_flow_data_request_dict)