Show / Hide Table of Contents

Class ListUsersResponse

Inheritance
System.Object
ListUsersResponse
Implements
IOciResponse
Namespace: Oci.IdentityService.Responses
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class ListUsersResponse : object, IOciResponse

Properties

Items

Declaration
public System.Collections.Generic.List<User> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.List<User>

A list of User instances.

OpcNextPage

Declaration
public string OpcNextPage { get; set; }
Property Value
Type Description
System.String

For pagination of a list of items. When paging through a list, if this header appears in the response, then a partial list might have been returned. Include this value as the page parameter for the subsequent GET request to get the next batch of items.

OpcRequestId

Declaration
public string OpcRequestId { get; set; }
Property Value
Type Description
System.String

Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

Implements

IOciResponse
Back to top