ConversationsModelFactory.ConversationRequestStatistics Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of ConversationRequestStatistics.
public static Azure.AI.Language.Conversations.Models.ConversationRequestStatistics ConversationRequestStatistics (int documentsCount = 0, int validDocumentsCount = 0, int erroneousDocumentsCount = 0, long transactionsCount = 0, int conversationsCount = 0, int validConversationsCount = 0, int erroneousConversationsCount = 0);
static member ConversationRequestStatistics : int * int * int * int64 * int * int * int -> Azure.AI.Language.Conversations.Models.ConversationRequestStatistics
Public Shared Function ConversationRequestStatistics (Optional documentsCount As Integer = 0, Optional validDocumentsCount As Integer = 0, Optional erroneousDocumentsCount As Integer = 0, Optional transactionsCount As Long = 0, Optional conversationsCount As Integer = 0, Optional validConversationsCount As Integer = 0, Optional erroneousConversationsCount As Integer = 0) As ConversationRequestStatistics
Parameters
- documentsCount
- Int32
Number of documents submitted in the request.
- validDocumentsCount
- Int32
Number of valid documents. This excludes empty, over-size limit or non-supported languages documents.
- erroneousDocumentsCount
- Int32
Number of invalid documents. This includes empty, over-size limit or non-supported languages documents.
- transactionsCount
- Int64
Number of transactions for the request.
- conversationsCount
- Int32
Number of conversations submitted in the request.
- validConversationsCount
- Int32
Number of conversation documents. This excludes documents that are empty, over the size limit, or in unsupported languages.
- erroneousConversationsCount
- Int32
Number of invalid documents. This includes documents that are empty, over the size limit, or in unsupported languages.
Returns
A new ConversationRequestStatistics instance for mocking.
Applies to
Azure SDK for .NET