Model/SPBaseType.ps1
# # Cloud Governance Api # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # Version: 1.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION GenericList=0, DocumentLibrary=1, Unused=2, </br>DiscussionBoard=3, Survey=4, Issue=5, </br>UnspecifiedBaseType=-1 .OUTPUTS SPBaseType<PSCustomObject> #> function New-SPBaseType { [CmdletBinding()] Param ( ) Process { 'Creating object: Cloud.Governance.Client => SPBaseType' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ } return $PSO } } |