PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::LexRuntime::IntentSummary; use Moose; has CheckpointLabel => (is => 'ro', isa => 'Str', request_name => 'checkpointLabel', traits => ['NameInRequest']); has ConfirmationStatus => (is => 'ro', isa => 'Str', request_name => 'confirmationStatus', traits => ['NameInRequest']); has DialogActionType => (is => 'ro', isa => 'Str', request_name => 'dialogActionType', traits => ['NameInRequest'], required => 1); has FulfillmentState => (is => 'ro', isa => 'Str', request_name => 'fulfillmentState', traits => ['NameInRequest']); has IntentName => (is => 'ro', isa => 'Str', request_name => 'intentName', traits => ['NameInRequest']); has Slots => (is => 'ro', isa => 'Paws::LexRuntime::StringMap', request_name => 'slots', traits => ['NameInRequest']); has SlotToElicit => (is => 'ro', isa => 'Str', request_name => 'slotToElicit', traits => ['NameInRequest']); 1; ### main pod documentation begin ### =head1 NAME Paws::LexRuntime::IntentSummary =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::LexRuntime::IntentSummary object: $service_obj->Method(Att1 => { CheckpointLabel => $value, ..., SlotToElicit => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::LexRuntime::IntentSummary object: $result = $service_obj->Method(...); $result->Att1->CheckpointLabel =head1 DESCRIPTION Provides information about the state of an intent. You can use this information to get the current state of an intent so that you can process the intent, or so that you can return the intent to its previous state. =head1 ATTRIBUTES =head2 CheckpointLabel => Str A user-defined label that identifies a particular intent. You can use this label to return to a previous intent. Use the C parameter of the C operation to filter the intents returned by the operation to those with only the specified label. =head2 ConfirmationStatus => Str The status of the intent after the user responds to the confirmation prompt. If the user confirms the intent, Amazon Lex sets this field to C. If the user denies the intent, Amazon Lex sets this value to C. The possible values are: =over =item * C - The user has responded "Yes" to the confirmation prompt, confirming that the intent is complete and that it is ready to be fulfilled. =item * C - The user has responded "No" to the confirmation prompt. =item * C - The user has never been prompted for confirmation; or, the user was prompted but did not confirm or deny the prompt. =back =head2 B DialogActionType => Str The next action that the bot should take in its interaction with the user. The possible values are: =over =item * C - The next action is asking the user if the intent is complete and ready to be fulfilled. This is a yes/no question such as "Place the order?" =item * C - Indicates that the there will not be a response from the user. For example, the statement "Your order has been placed" does not require a response. =item * C - The next action is to determine the intent that the user wants to fulfill. =item * C - The next action is to elicit a slot value from the user. =back =head2 FulfillmentState => Str The fulfillment state of the intent. The possible values are: =over =item * C - The Lambda function associated with the intent failed to fulfill the intent. =item * C - The intent has fulfilled by the Lambda function associated with the intent. =item * C - All of the information necessary for the intent is present and the intent ready to be fulfilled by the client application. =back =head2 IntentName => Str The name of the intent. =head2 Slots => L Map of the slots that have been gathered and their values. =head2 SlotToElicit => Str The next slot to elicit from the user. If there is not slot to elicit, the field is blank. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut