Flow.Net
Show / Hide Table of Contents

Class ScriptBody

Inheritance
Object
ScriptBody
Namespace: Flow.Net.Sdk.Client.Http
Assembly: Flow.Net.Sdk.Client.Http.dll
Syntax
public class ScriptBody

Properties

| Improve this Doc View Source

AdditionalProperties

Declaration
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Type Description
IDictionary<String, Object>
| Improve this Doc View Source

Arguments

An list of arguments each encoded as Base64 passed in the JSON-Cadence interchange format.

Declaration
[JsonProperty("arguments", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<byte[]> Arguments { get; set; }
Property Value
Type Description
ICollection<Byte[]>
| Improve this Doc View Source

Script

Base64 encoded content of the Cadence script.

Declaration
[JsonProperty("script", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public byte[] Script { get; set; }
Property Value
Type Description
Byte[]
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX