Show / Hide Table of Contents

Class ValidationResponse

The validation response returned when checking whether the requested user is valid.

Inheritance
object
ValidationResponse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CimsService.Models
Assembly: OCI.DotNetSDK.Cims.dll
Syntax
public class ValidationResponse

Properties

IsValidUser

Declaration
[JsonProperty(PropertyName = "isValidUser")]
public bool? IsValidUser { get; set; }
Property Value
Type Description
bool?

Boolean value that indicates whether the requested user is valid.

WritePermittedUserGroupInfos

Declaration
[JsonProperty(PropertyName = "writePermittedUserGroupInfos")]
public List<CmosUserGroupInfo> WritePermittedUserGroupInfos { get; set; }
Property Value
Type Description
List<CmosUserGroupInfo>

Technical support type (TECH) only: Identifier and name of the support request's user group (userGroupId and userGroupName).

In this article
Back to top