public static PropertiesField WithFields(PropertyField propertyField = null,
                                          bool count = true)
 {
     return(new PropertiesField
     {
         PropertyField = propertyField,
         Count = count,
     });
 }
 public static PropertiesField WithFields(PropertyField propertyField = null,
                                          bool count = true,
                                          bool href  = false)
 {
     return(new PropertiesField
     {
         PropertyField = propertyField,
         Count = count,
         Href = href
     });
 }
Exemple #3
0
 public static ParametersField WithFields(PropertyField property = null,
                                          bool count             = true,
                                          bool href = false)
 {
     return(new ParametersField
     {
         Property = property,
         Count = count,
         Href = href
     });
 }