Show / Hide Table of Contents

Class UsageDetails

Usage details.

Inheritance
object
UsageDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiagentruntimeService.Models
Assembly: OCI.DotNetSDK.Generativeaiagentruntime.dll
Syntax
public class UsageDetails

Properties

InputCharCount

Declaration
[JsonProperty(PropertyName = "inputCharCount")]
public int? InputCharCount { get; set; }
Property Value
Type Description
int?

Number of input characters.

InputTokenCount

Declaration
[JsonProperty(PropertyName = "inputTokenCount")]
public int? InputTokenCount { get; set; }
Property Value
Type Description
int?

Number of input tokens.

OutputCharCount

Declaration
[JsonProperty(PropertyName = "outputCharCount")]
public int? OutputCharCount { get; set; }
Property Value
Type Description
int?

Number of output characters.

OutputTokenCount

Declaration
[JsonProperty(PropertyName = "outputTokenCount")]
public int? OutputTokenCount { get; set; }
Property Value
Type Description
int?

Number of output tokens.

In this article
Back to top