OBJECT

TprRequestDetailReply

Description

Reply for getting TPR Request Detail.

link GraphQL Schema definition

  • type TprRequestDetailReply {
  • # ID of the TPR request.
  • id: String!
  • # User making the TPR request.
  • requester: UserSummary
  • # Name of the organization.
  • orgName: String!
  • # Time the request was created.
  • createdAt: DateTime
  • # Time the request was last updated.
  • updatedAt: DateTime
  • # Time the request expires.
  • expiresAt: DateTime
  • # Time the request's execution window expires.
  • executionExpiresAt: DateTime
  • # Log of the changes to the request.
  • statusLog: [TprReqStatusChange!]!
  • # Policies triggered by the request.
  • triggeredTprPolicies: [TriggeredTprPolicy!]!
  • # Details of the request.
  • details: TprRequestDetail
  • # Potentially, the last approver needed for the request.
  • isPotentialLastApprover: Boolean!
  • # Status of the request.
  • status: TprReqStatus!
  • # Highest priority rule triggered by the request.
  • triggeredTprRule: TprRule!
  • # All rules triggered by the request.
  • triggeredTprRules: [TprRule!]!
  • # Execution type for the request.
  • executionType: TprExecutionType!
  • # ID of the organization.
  • orgId: UUID!
  • # Authorized operations.
  • operations: AuthorizedOps!
  • }

link Require by