如何在Intellij中定义数组?我正在发送此API请求并收到错误消息:
sharedAccountDetails [
Account details.
SharedAccountItem{
accountNumber string
Account number of the user.
accountName string
Account name of the user.
accountType string
Account type saving/current etc.
branchCode string
Branch Code.
}]
这是我在下面的要求
And request { 'channel': 'email'}
And request { 'accountNumber': '000000000'}
And request { 'accountName': 'Mr Bytes C'}
And request { 'accountType': 'Current Account'}
And request { 'branchCode': '000'}
它正在请求数组。如何定义它们? 提前致谢。 问候, 齐利兹
答案 0 :(得分:0)
不确定我是否了解,但是您可以仔细看一下空手道的演示示例。看来您必须了解如何使用JSON。请参见下面的示例:
And request
"""
{
sharedAccountDetails: [
{ accountNumber: '000000000', 'accountName': 'Mr Bytes C', 'accountType': 'Current Account' }
]
}
"""