William Cheng 6bc065ec34
Specify source encoding in java/kotlin sample poms templates (#12088)
Co-authored-by: cghislai <charlyghislain@gmail.com>
2022-04-09 15:20:58 +08:00

1.5 KiB

AdditionalPropertiesClass

Properties

Name Type Description Notes
MapProperty System.Collections.Hashtable [optional]
MapOfMapProperty System.Collections.Hashtable [optional]
Anytype1 AnyType [optional]
MapWithUndeclaredPropertiesAnytype1 SystemCollectionsHashtable [optional]
MapWithUndeclaredPropertiesAnytype2 SystemCollectionsHashtable [optional]
MapWithUndeclaredPropertiesAnytype3 System.Collections.Hashtable [optional]
EmptyMap SystemCollectionsHashtable an object with no declared properties and no undeclared properties, hence it's an empty map. [optional]
MapWithUndeclaredPropertiesString System.Collections.Hashtable [optional]

Examples

  • Prepare the resource
$AdditionalPropertiesClass = Initialize-PSPetstoreAdditionalPropertiesClass  -MapProperty null `
 -MapOfMapProperty null `
 -Anytype1 null `
 -MapWithUndeclaredPropertiesAnytype1 null `
 -MapWithUndeclaredPropertiesAnytype2 null `
 -MapWithUndeclaredPropertiesAnytype3 null `
 -EmptyMap null `
 -MapWithUndeclaredPropertiesString null
  • Convert the resource to JSON
$AdditionalPropertiesClass | ConvertTo-JSON

[Back to Model list] [Back to API list] [Back to README]