Contents

Every input parameter is represented by a file that can be written to. If a file is not changed, the parameter it represents will not be sent to the API -- it is possible to send only a subset of input parameters.

<% @c.parameters.each do |name, desc| %> <% end -%>
Name Label Required? Data type Validators Default value Description
<%= name %> <%= desc[:label] %> <%= desc[:required] ? 'yes' : 'no' %> <%= desc[:type] %> <% if desc[:validators] -%> <% desc[:validators].each do |name, desc| %> <%= name.capitalize %>
<% desc.each do |k, v| %>
<%= k %>
<%= v %>
<% end -%>
<% end -%> <% end -%>
<%= desc[:default] %> <%= desc[:description] %>