Interface DismissDecisionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DismissDecision
,DismissDecision.Builder
public interface DismissDecisionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getDismissTime()
The time at which the approval request was dismissed.com.google.protobuf.TimestampOrBuilder
getDismissTimeOrBuilder()
The time at which the approval request was dismissed.boolean
getImplicit()
This field will be true if the ApprovalRequest was implicitly dismissed due to inaction by the access approval approvers (the request is not acted on by the approvers before the exiration time).boolean
hasDismissTime()
The time at which the approval request was dismissed.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasDismissTime
boolean hasDismissTime()
The time at which the approval request was dismissed.
.google.protobuf.Timestamp dismiss_time = 1;
- Returns:
- Whether the dismissTime field is set.
-
getDismissTime
com.google.protobuf.Timestamp getDismissTime()
The time at which the approval request was dismissed.
.google.protobuf.Timestamp dismiss_time = 1;
- Returns:
- The dismissTime.
-
getDismissTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getDismissTimeOrBuilder()
The time at which the approval request was dismissed.
.google.protobuf.Timestamp dismiss_time = 1;
-
getImplicit
boolean getImplicit()
This field will be true if the ApprovalRequest was implicitly dismissed due to inaction by the access approval approvers (the request is not acted on by the approvers before the exiration time).
bool implicit = 2;
- Returns:
- The implicit.
-
-