Show / Hide Table of Contents

Class ExportSkillRequest

Inheritance
object
ExportSkillRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OdaService.Requests
Assembly: OCI.DotNetSDK.Oda.dll
Syntax
public class ExportSkillRequest : IOciRequest
Examples

Click here to see an example of how to use ExportSkill request.

Properties

ExportSkillDetails

Declaration
[Required(ErrorMessage = "ExportSkillDetails is required.")]
[HttpConverter(TargetEnum.Body)]
public ExportSkillDetails ExportSkillDetails { get; set; }
Property Value
Type Description
ExportSkillDetails

Where in Object Storage to export the Skill to.

Remarks

Required

OdaInstanceId

Declaration
[Required(ErrorMessage = "OdaInstanceId is required.")]
[HttpConverter(TargetEnum.Path, "odaInstanceId")]
public string OdaInstanceId { get; set; }
Property Value
Type Description
string

Unique Digital Assistant instance identifier.

Remarks

Required

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing. This value is included in the opc-request-id response header.

SkillId

Declaration
[Required(ErrorMessage = "SkillId is required.")]
[HttpConverter(TargetEnum.Path, "skillId")]
public string SkillId { get; set; }
Property Value
Type Description
string

Unique Skill identifier.

Remarks

Required

Implements

IOciRequest
In this article
Back to top