Show / Hide Table of Contents

Class GetOdaInstanceAttachmentRequest

Inheritance
object
GetOdaInstanceAttachmentRequest
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 GetOdaInstanceAttachmentRequest : IOciRequest
Examples

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

Properties

AttachmentId

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

Unique Digital Assistant instance attachment identifier.

Remarks

Required

IncludeOwnerMetadata

Declaration
[HttpConverter(TargetEnum.Query, "includeOwnerMetadata")]
public bool? IncludeOwnerMetadata { get; set; }
Property Value
Type Description
bool?

Whether to send attachment owner info during get/list call.

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.

Implements

IOciRequest
In this article
Back to top