We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc90baf commit 8efdbd7Copy full SHA for 8efdbd7
libraries/Microsoft.Bot.Schema/ActionTypes.cs
@@ -8,6 +8,8 @@
8
// regenerated.
9
// </auto-generated>
10
11
+using System;
12
+
13
namespace Microsoft.Bot.Schema
14
{
15
@@ -25,6 +27,7 @@ public static class ActionTypes
25
27
public const string DownloadFile = "downloadFile";
26
28
public const string Signin = "signin";
29
public const string Call = "call";
30
+ [Obsolete("Bot Framework no longer supports payments.")]
31
public const string Payment = "payment";
32
public const string MessageBack = "messageBack";
33
public const string openApp = "openApp";
libraries/Microsoft.Bot.Schema/CardAction.cs
@@ -32,7 +32,7 @@ public CardAction()
/// <param name="type">The type of action implemented by this button.
/// Possible values include: 'openUrl', 'imBack', 'postBack',
34
/// 'playAudio', 'playVideo', 'showImage', 'downloadFile', 'signin',
35
- /// 'call', 'payment', 'messageBack', 'openApp'</param>
+ /// 'call', 'messageBack', 'openApp'</param>
36
/// <param name="title">Text description which appears on the
37
/// button</param>
38
/// <param name="image">Image URL which will appear on the button, next
@@ -65,7 +65,7 @@ public CardAction()
65
/// Gets or sets the type of action implemented by this button.
66
67
68
- /// 'call', 'payment', 'messageBack'
+ /// 'call', 'messageBack'
69
/// </summary>
70
[JsonProperty(PropertyName = "type")]
71
public string Type { get; set; }
libraries/Microsoft.Bot.Schema/MicrosoftPayMethodData.cs
@@ -1,4 +1,4 @@
1
-// <auto-generated>
+// <auto-generated>
2
// Copyright (c) Microsoft Corporation. All rights reserved.
3
// Licensed under the MIT License. See License.txt in the project root for
4
// license information.
@@ -11,13 +11,13 @@
using Newtonsoft.Json;
- using System.Collections;
+ using System;
using System.Collections.Generic;
16
- using System.Linq;
17
18
/// <summary>
19
/// W3C Payment Method Data for Microsoft Pay
20
21
public partial class MicrosoftPayMethodData
22
23
libraries/Microsoft.Bot.Schema/PaymentAddress.cs
/// Address within a Payment Request
public partial class PaymentAddress
libraries/Microsoft.Bot.Schema/PaymentCurrencyAmount.cs
@@ -10,12 +10,13 @@
/// Supplies monetary amounts
public partial class PaymentCurrencyAmount
libraries/Microsoft.Bot.Schema/PaymentDetails.cs
/// Provides information about the requested transaction
public partial class PaymentDetails
libraries/Microsoft.Bot.Schema/PaymentDetailsModifier.cs
@@ -11,14 +11,14 @@
/// Provides details that modify the PaymentDetails based on payment method
/// identifier
public partial class PaymentDetailsModifier
24
libraries/Microsoft.Bot.Schema/PaymentItem.cs
@@ -11,11 +11,12 @@
/// Indicates what the payment request is for and the value asked for
public partial class PaymentItem
libraries/Microsoft.Bot.Schema/PaymentMethodData.cs
/// Indicates a set of supported payment methods and any associated payment
/// method specific data for those methods
public partial class PaymentMethodData
libraries/Microsoft.Bot.Schema/PaymentOperations.cs
@@ -1,11 +1,14 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
5
6
7
/// Names for invocable operations in the payment callback protocol.
public static class PaymentOperations
0 commit comments