Show / Hide Table of Contents

Class ListRecipientInvitationsRequest

Inheritance
object
ListRecipientInvitationsRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.TenantmanagercontrolplaneService.Requests
Assembly: OCI.DotNetSDK.Tenantmanagercontrolplane.dll
Syntax
public class ListRecipientInvitationsRequest : IOciRequest
Examples

Click here to see an example of how to use ListRecipientInvitations request.

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[HttpConverter(TargetEnum.Query, "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The ID of the compartment in which to list resources.

Remarks

Required

LifecycleState

Declaration
[HttpConverter(TargetEnum.Query, "lifecycleState")]
public LifecycleState? LifecycleState { get; set; }
Property Value
Type Description
LifecycleState?

The lifecycle state of the resource.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call.

SenderTenancyId

Declaration
[HttpConverter(TargetEnum.Query, "senderTenancyId")]
public string SenderTenancyId { get; set; }
Property Value
Type Description
string

The tenancy that sent the invitation.

Status

Declaration
[HttpConverter(TargetEnum.Query, "status")]
public RecipientInvitationStatus? Status { get; set; }
Property Value
Type Description
RecipientInvitationStatus?

The status of the recipient invitation.

Implements

IOciRequest
In this article
Back to top