InvitationFeature¶
-
class
oci.tenant_manager_control_plane.models.InvitationFeature(**kwargs)¶ Bases:
objectThe feature model for sender invitation.
Attributes
STATUS_ACCEPTEDA constant which can be used with the status property of a InvitationFeature. STATUS_CANCELEDA constant which can be used with the status property of a InvitationFeature. STATUS_EXPIREDA constant which can be used with the status property of a InvitationFeature. STATUS_FAILEDA constant which can be used with the status property of a InvitationFeature. STATUS_NOT_APPLICABLEA constant which can be used with the status property of a InvitationFeature. STATUS_PENDINGA constant which can be used with the status property of a InvitationFeature. nameGets the name of this InvitationFeature. recipient_invitation_idGets the recipient_invitation_id of this InvitationFeature. statusGets the status of this InvitationFeature. Methods
__init__(**kwargs)Initializes a new InvitationFeature object with values from keyword arguments. -
STATUS_ACCEPTED= 'ACCEPTED'¶ A constant which can be used with the status property of a InvitationFeature. This constant has a value of “ACCEPTED”
-
STATUS_CANCELED= 'CANCELED'¶ A constant which can be used with the status property of a InvitationFeature. This constant has a value of “CANCELED”
-
STATUS_EXPIRED= 'EXPIRED'¶ A constant which can be used with the status property of a InvitationFeature. This constant has a value of “EXPIRED”
-
STATUS_FAILED= 'FAILED'¶ A constant which can be used with the status property of a InvitationFeature. This constant has a value of “FAILED”
-
STATUS_NOT_APPLICABLE= 'NOT_APPLICABLE'¶ A constant which can be used with the status property of a InvitationFeature. This constant has a value of “NOT_APPLICABLE”
-
STATUS_PENDING= 'PENDING'¶ A constant which can be used with the status property of a InvitationFeature. This constant has a value of “PENDING”
-
__init__(**kwargs)¶ Initializes a new InvitationFeature object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - name (str) – The value to assign to the name property of this InvitationFeature.
- recipient_invitation_id (str) – The value to assign to the recipient_invitation_id property of this InvitationFeature.
- status (str) – The value to assign to the status property of this InvitationFeature. Allowed values for this property are: “PENDING”, “CANCELED”, “ACCEPTED”, “EXPIRED”, “FAILED”, “NOT_APPLICABLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
name¶ Gets the name of this InvitationFeature. Name of the feature.
Returns: The name of this InvitationFeature. Return type: str
-
recipient_invitation_id¶ Gets the recipient_invitation_id of this InvitationFeature. recipientInvitationId for this feature.
Returns: The recipient_invitation_id of this InvitationFeature. Return type: str
-
status¶ Gets the status of this InvitationFeature. Status of the sender invitation.
Allowed values for this property are: “PENDING”, “CANCELED”, “ACCEPTED”, “EXPIRED”, “FAILED”, “NOT_APPLICABLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The status of this InvitationFeature. Return type: str
-