Show / Hide Table of Contents

Class MlApplicationPackageArgumentDetails

Represents single argument name value pair.

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

Properties

Description

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

short description of the argument

Remarks

Required

IsMandatory

Declaration
[Required(ErrorMessage = "IsMandatory is required.")]
[JsonProperty(PropertyName = "isMandatory")]
public bool? IsMandatory { get; set; }
Property Value
Type Description
bool?

argument is mandatory or not

Remarks

Required

Name

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

Argument name

Remarks

Required

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MlApplicationPackageArgumentDetails.TypeEnum? Type { get; set; }
Property Value
Type Description
MlApplicationPackageArgumentDetails.TypeEnum?

type of the argument

Remarks

Required

Value

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

Argument value

Remarks

Required

In this article
Back to top