Class CreateQuoteAttachmentDetails
The details for creating a new offer quote attachment.
Inherited Members
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