Show / Hide Table of Contents

Class CreateQuoteAttachmentDetails

The details for creating a new offer quote attachment.

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

Properties

DisplayName

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

The name used to refer to the uploaded data.

Remarks

Required

FileBase64Encoded

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

Base64-encoded file to attach to the offer quote.

Remarks

Required

Recipient

Declaration
[Required(ErrorMessage = "Recipient is required.")]
[JsonProperty(PropertyName = "recipient")]
[JsonConverter(typeof(StringEnumConverter))]
public QuoteAttachment.RecipientEnum? Recipient { get; set; }
Property Value
Type Description
QuoteAttachment.RecipientEnum?

The recipient of the offer quote attachment.

Remarks

Required

Type

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

The type of offer quote attachment.

Remarks

Required

In this article
Back to top