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>

Array of user groups that the user has access to for creating technical support type (TECH) support requests. Each user group is indicated by its identifier and name (userGroupId and userGroupName). Note: The Customer User Administrator (CUA) can manage user groups by name using My Oracle Cloud Support portal.

In this article
Back to top