I want to send this parameter
{Id:1,
Comment:{Content:'comment 1'}
}
I wrote this
var content = "comment 1"
let content: [String : String] = ["Content":"\(content)"]
let params: [String : AnyObject]=["Comment":"\(content)", "Id":"123"]
but not work