Show / Hide Table of Contents

Class CreateStatementDetails

The details required to create a statement.

Inheritance
object
CreateStatementDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataflowService.Models
Assembly: OCI.DotNetSDK.Dataflow.dll
Syntax
public class CreateStatementDetails

Properties

Code

Declaration
[Required(ErrorMessage = "Code is required.")]
[JsonProperty(PropertyName = "code")]
public string Code { get; set; }
Property Value
Type Description
string

The statement code to execute. Example: println(sc.version)

Remarks

Required

In this article
Back to top