The user's response: accept (submitted), decline (rejected), or cancel (dismissed)
| 8929 | |
| 8930 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 8931 | class UIElicitationResponseAction(Enum): |
| 8932 | """The user's response: accept (submitted), decline (rejected), or cancel (dismissed)""" |
| 8933 | |
| 8934 | ACCEPT = "accept" |
| 8935 | CANCEL = "cancel" |
| 8936 | DECLINE = "decline" |
| 8937 | |
| 8938 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 8939 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…