AppFunctionResponseMetadata


class AppFunctionResponseMetadata


Represents an AppFunction's response metadata.

Summary

Public constructors

AppFunctionResponseMetadata(
    valueType: AppFunctionDataTypeMetadata,
    description: String
)

Public functions

open operator Boolean
equals(other: Any?)
open Int
open String

Public properties

String

A description of the response and its intended use.

AppFunctionDataTypeMetadata

The schema of the return value type.

Public constructors

AppFunctionResponseMetadata

Added in 1.0.0-alpha03
AppFunctionResponseMetadata(
    valueType: AppFunctionDataTypeMetadata,
    description: String = ""
)

Public functions

equals

open operator fun equals(other: Any?): Boolean

hashCode

open fun hashCode(): Int

toString

open fun toString(): String

Public properties

description

Added in 1.0.0-alpha03
val descriptionString

A description of the response and its intended use.

valueType

Added in 1.0.0-alpha03
val valueTypeAppFunctionDataTypeMetadata

The schema of the return value type.