Classes/Identity/V1/ClientModels/RelativityIdentityV1ClientModelsClientResponse.ps1
class RelativityIdentityV1ClientModelsClientResponse : RelativityIdentityV1SharedObjectIdentifier { <# .SYNOPSIS Represents the results of a read operation on a client. .PARAMETER Actions Gets a list of RESTful operations that a user has permissions to perform on the artifact. .PARAMETER CreatedBy Gets the Artifact ID and name of the user who created the artifact. .PARAMETER CreatedOnDate Gets the date and time when the artifact was added to Relativity. bug? Does not actaully return time .PARAMETER IsClientDomain Gets or sets the client's domain status. .PARAMETER Keywords Gets or sets any keywords associated with the artifact. .PARAMETER LastModifiedBy Gets the Artifact ID and name of the user who recently updated the artifact. .PARAMETER LastModifiedOnDate Gets the date and time when the artifact was most recently updated. bug? Does not actaully return time .PARAMETER Meta Gets a list of unsupported and read-only properties on the current artifact. .PARAMETER Name Gets or sets the client's name. .PARAMETER Notes Gets or sets an optional description or other information about the artifact. .PARAMETER Number Gets or sets the client's number. .PARAMETER Status Gets or sets the client's status. #> [Collections.Generic.List[RelativityIdentityV1SharedAction]] $Actions [RelativityIdentityV1SharedDisplayableObjectIdentifier] $CreatedBy [DateTime] $CreatedOnDate [Boolean] $IsClientDomain [String] $Keywords [RelativityIdentityV1SharedDisplayableObjectIdentifier] $LastModifiedBy [DateTime] $LastModifiedOnDate [RelativityIdentityV1SharedMeta] $Meta [String] $Name [String] $Notes [String] $Number [RelativityIdentityV1SharedDisplayableObjectIdentifier] $Status RelativityIdentityV1ClientModelsClientResponse ( [PSCustomObject] $ApiResponse ):base ($ApiResponse) { $this.Actions = @() $ApiResponse.Actions | ForEach-Object { [Collections.Generic.List[String]] $ActionReasons = @() $_.Reason | ForEach-Object { $ActionReasons.Add($_) } $this.Actions.Add([RelativityIdentityV1SharedAction]::New( $_.Href, $_.IsAvailable, $_.Name, $ActionReasons, $_.Verb )) } [Collections.Generic.List[Guid]] $CreatedByGuids = @() $ApiResponse.CreatedBy.Guids | ForEach-Object { $CreatedByGuids.Add($_) } $this.CreatedBy = [RelativityIdentityV1SharedDisplayableObjectIdentifier]::New( $ApiResponse.CreatedBy.ArtifactID, $CreatedByGuids, $ApiResponse.CreatedBy.Name ) Write-Debug $ApiResponse.CreatedOnDate $this.CreatedOnDate = $ApiResponse.CreatedOnDate $this.IsClientDomain = $ApiResponse.IsClientDomain $this.Keywords = $ApiResponse.Keywords [Collections.Generic.List[Guid]] $LastModifiedByGuids = @() $ApiResponse.LastModifiedBy.Guids | ForEach-Object { $LastModifiedByGuids.Add($_) } $this.LastModifiedBy = [RelativityIdentityV1SharedDisplayableObjectIdentifier]::New( $ApiResponse.LastModifiedBy.ArtifactID, $LastModifiedByGuids, $ApiResponse.LastModifiedBy.Name ) Write-Debug $ApiResponse.LastModifiedOnDate $this.LastModifiedOnDate = $ApiResponse.LastModifiedOnDate [Collections.Generic.List[String]] $MetaReadOnly = @() $ApiResponse.Meta.ReadOnly | ForEach-Object { $MetaReadOnly.Add($_) } [Collections.Generic.List[String]] $MetaUnsupported = @() $ApiResponse.Meta.Unsupported | ForEach-Object { $MetaUnsupported.Add($_) } $this.Meta = [RelativityIdentityV1SharedMeta]::New( $MetaReadOnly, $MetaUnsupported ) $this.Name = $ApiResponse.Name $this.Notes = $ApiResponse.Notes $this.Number = $ApiResponse.Number [Collections.Generic.List[Guid]] $StatusGuids = @() $ApiResponse.Status.Guids | ForEach-Object { $StatusGuids.Add($_) } $this.Status = [RelativityIdentityV1SharedDisplayableObjectIdentifier]::New( $ApiResponse.Status.ArtifactID, $StatusGuids, $ApiResponse.Status.Name ) } } |