Class InputProperty
- Namespace
- AnthropicClient.Models
- Assembly
- AnthropicClient.dll
Represents an input property.
public class InputProperty
- Inheritance
-
InputProperty
- Inherited Members
Constructors
InputProperty(string, string)
Initializes a new instance of the InputProperty class.
public InputProperty(string type, string description)
Parameters
type
stringThe type of the input property.
description
stringThe description of the input property.
Exceptions
- ArgumentNullException
Thrown when the type or description is null.
Properties
Description
Gets the description of the input property.
public string Description { get; init; }
Property Value
Type
Gets the type of the input property.
public string Type { get; init; }