packagecommands// Request represents a call to a command from a consumertypeRequeststruct{optionsmap[string]interface{}}/*func (r *Request) Option(name string) interface{} {}func (r *Request) Arguments() interface{} {}*/funcNewRequest()*Request{return&Request{make(map[string]interface{}),}}