Table of Contents

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 string

The type of the input property.

description string

The 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

string

Type

Gets the type of the input property.

public string Type { get; init; }

Property Value

string