changed to Boolean to allow null values

This commit is contained in:
Tony Tam 2014-10-20 17:11:19 -07:00
parent 86f9a0a58a
commit 7167bf28c7

View File

@ -9,5 +9,5 @@ public class CodegenParameter {
* this property is required and its value MUST be true. Otherwise, the property
* MAY be included and its default value is false.
*/
public boolean required;
public Boolean required;
}