Class LimitsIncreaseRequestComment
The properties that define a comment in a limit increase request.
Inherited Members
Namespace: Oci.LimitsincreaseService.Models
Assembly: OCI.DotNetSDK.Limitsincrease.dll
Syntax
public class LimitsIncreaseRequestComment
Properties
Message
Declaration
[Required(ErrorMessage = "Message is required.")]
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The comment message. |
Remarks
Required
SenderType
Declaration
[Required(ErrorMessage = "SenderType is required.")]
[JsonProperty(PropertyName = "senderType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LimitsIncreaseRequestComment.SenderTypeEnum? SenderType { get; set; }
Property Value
| Type | Description |
|---|---|
| LimitsIncreaseRequestComment.SenderTypeEnum? | The comment sender type. |
Remarks
Required
TimeCreated
Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime? | The time that the comment was created. Format defined by RFC3339. |
Remarks
Required