Class TechScriptFunctionDto
Описывает данные скрипта в модели технологии.
Inherited Members
Namespace: Ascon.Vertical.Core.DataModels
Assembly: Ascon.Vertical.Core.dll
Syntax
public class TechScriptFunctionDto
Properties
Arguments
Возвращает или назначает перечень аргументов скрипта.
Declaration
[JsonPropertyName("arguments")]
public List<TechScriptFunctionArgumentDto> Arguments { get; set; }
Property Value
| Type | Description |
|---|---|
| List<TechScriptFunctionArgumentDto> |
Body
Возвращает или назначает код скрипта.
Declaration
[JsonPropertyName("body")]
public string Body { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Description
Возвращает или назначает описание скрипта.
Declaration
[JsonPropertyName("description")]
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
DisplayName
Возвращает или назначает отображаемое наименование скрипта.
Declaration
[JsonPropertyName("displayName")]
public string DisplayName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Id
Возвращает или назначает идентификатор скрипта.
Declaration
[JsonPropertyName("id")]
public int Id { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Name
Возвращает или назначает наименование скрипта.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ReturnType
Возвращает или назначает тип возвращаемого значения скрипта.
Declaration
[JsonPropertyName("returnType")]
public string ReturnType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |