Class LimitsIncreaseQuestionSummary
A summary of properties for a question to be asked for a certain limit. Example questions include database version for some limits in Autonomous AI Database or email domain for some limits in Email Delivery. For more information, see Creating a Limit Increase Request.
Inherited Members
Namespace: Oci.LimitsincreaseService.Models
Assembly: OCI.DotNetSDK.Limitsincrease.dll
Syntax
public class LimitsIncreaseQuestionSummary
Properties
Id
Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The OCID of the question. |
Remarks
Required
IsRequired
Declaration
[Required(ErrorMessage = "IsRequired is required.")]
[JsonProperty(PropertyName = "isRequired")]
public bool? IsRequired { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | When |
Remarks
Required
LimitName
Declaration
[JsonProperty(PropertyName = "limitName")]
public string LimitName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The name of the limit for the question (empty if the question is for the service). |
Options
Declaration
[JsonProperty(PropertyName = "options")]
public Dictionary<string, string> Options { get; set; }
Property Value
| Type | Description |
|---|---|
| Dictionary<string, string> | Set options for the question. Applies to questions that aren't free text. |
QuestionText
Declaration
[Required(ErrorMessage = "QuestionText is required.")]
[JsonProperty(PropertyName = "questionText")]
public string QuestionText { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The text for the question. |
Remarks
Required
QuestionType
Declaration
[Required(ErrorMessage = "QuestionType is required.")]
[JsonProperty(PropertyName = "questionType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LimitsIncreaseQuestionSummary.QuestionTypeEnum? QuestionType { get; set; }
Property Value
| Type | Description |
|---|---|
| LimitsIncreaseQuestionSummary.QuestionTypeEnum? | The type of question. |
Remarks
Required
Service
Declaration
[Required(ErrorMessage = "Service is required.")]
[JsonProperty(PropertyName = "service")]
public string Service { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The name of the service for the question. |
Remarks
Required