Documentation
Preparing search index...
@quatrain/skills
RemoteMethodDefinition
Interface RemoteMethodDefinition
Definition of a remote method exposed or called by the skill.
interface
RemoteMethodDefinition
{
description
?:
string
;
httpMethod
?:
"GET"
|
"POST"
|
"PUT"
|
"DELETE"
|
"PATCH"
;
name
:
string
;
parameters
?:
Record
<
string
,
{
description
?:
string
;
required
:
boolean
;
type
:
"string"
|
"number"
|
"boolean"
|
"object"
|
"array"
;
}
,
>
;
remoteName
:
string
;
}
Index
Properties
description?
http
Method?
name
parameters?
remote
Name
Properties
Optional
description
description
?:
string
Optional
http
Method
httpMethod
?:
"GET"
|
"POST"
|
"PUT"
|
"DELETE"
|
"PATCH"
name
name
:
string
Optional
parameters
parameters
?:
Record
<
string
,
{
description
?:
string
;
required
:
boolean
;
type
:
"string"
|
"number"
|
"boolean"
|
"object"
|
"array"
;
}
,
>
remote
Name
remoteName
:
string
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
description
http
Method
name
parameters
remote
Name
Documentation
Loading...
Definition of a remote method exposed or called by the skill.