UNPKG

1.79 kBJavaScriptView Raw
1"use strict";
2/**
3 * Copyright 2018 Google Inc. All Rights Reserved.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17Object.defineProperty(exports, "__esModule", { value: true });
18exports.DigitalPurchaseCheck = void 0;
19const helper_1 = require("../helper");
20/**
21 * Check to confirm digital purchase eligibility.
22 *
23 * @example
24 * ```javascript
25 *
26 * const app = dialogflow()
27 *
28 * app.intent('Default Welcome Intent', conv => {
29 * // Immediately invoke digital purchase check intent to confirm
30 * // purchase eligibility.
31 * conv.ask(new DigitalPurchaseCheck())
32 * })
33 *
34 * app.intent('Digital Purchase Check', conv => {
35 * const arg = conv.arguments.get('DIGITAL_PURCHASE_CHECK_RESULT')
36 * console.log(arg)
37 * })
38 * ```
39 *
40 * @public
41 */
42class DigitalPurchaseCheck extends helper_1.SoloHelper {
43 /**
44 * @param options The raw {@link GoogleActionsTransactionsV3DigitalPurchaseCheckSpec}
45 * @public
46 */
47 constructor(options) {
48 super({
49 intent: 'actions.intent.DIGITAL_PURCHASE_CHECK',
50 type: 'type.googleapis.com/google.actions.transactions.v3.DigitalPurchaseCheckSpec',
51 data: options,
52 });
53 }
54}
55exports.DigitalPurchaseCheck = DigitalPurchaseCheck;
56//# sourceMappingURL=digitalpurchasecheck.js.map
\No newline at end of file