Show / Hide Table of Contents

Class PatchModelOperation

The metadata which can be edited after model creation.

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

Properties

Operation

Declaration
[JsonProperty(PropertyName = "operation")]
[JsonConverter(typeof(StringEnumConverter))]
public PatchModelOperation.OperationEnum? Operation { get; set; }
Property Value
Type Description
PatchModelOperation.OperationEnum?

The value of the parameter to be updated.

Path

Declaration
[JsonProperty(PropertyName = "path")]
public string Path { get; set; }
Property Value
Type Description
string

The parameter of the resource to be changed.

Value

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

The value of the parameter to be updated.

In this article
Back to top