Model/EmailTemplateType.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 Assigned=0, Rejected=1, Approved=2, </br>Completed=3, NotifyTemplate=4, AdminContactTemplate=5, </br>ExpirationTemplate=6, WarningPeriodTemplate=7, PermissionBeforeExpired=8, </br>RequestModify=9, OwnershipNotifyContact=10, TaskReminderTemplate=11, </br>SiteCollectionStatus=12, UserStatus=13, GroupStatus=14, </br>SendUserPasswordTemplate=15, RequestFailedValidation=16, GroupQuotaThresholdWarning=17, </br>SiteCollectionRenewalReport=18, Office365GroupRenewalReport=19, SiteCollectionRenewalError=20, </br>Office365GroupRenewalError=21, SiteCollectionRenewalGeneratesFailed=22, Office365GroupRenewalGeneratesFailed=23, </br>SiteCollectionRenewalProcessOverdue=24, Office365GroupRenewalProcessOverdue=25, AutoRejectTask=26, </br>SiteQuotaThreshold=27, SCApplyInformation=28, GroupApplyInformation=29, </br>ImportResult=30, ApplyResult=31, DelayedEmailNotification=32, </br>ArchiveTeamEmailNotification=33, Cancelled=34, NotifyApproverRejected=35, </br>InviteSupportToUserPartner=36, InviteSupportToUser=37, InviteSupportToSupport=38, </br> .OUTPUTS EmailTemplateType<PSCustomObject> #> function New-EmailTemplateType { [CmdletBinding()] Param ( ) Process { 'Creating object: Cloud.Governance.Client => EmailTemplateType' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ } return $PSO } } |