DeploymentQuestionQuestion

The Question.Question structure contains fields to describe a deployment question.


Properties

string
default_answer Required

Default answer value.


string
id Required

Id of the question raised.


array of string
possible_answers Required

Possible answers values.


question Required

Message describing the question.


type Required

The Question.QuestionType enumerated type defines the type of the question raised.
YES_NO : Question with answer values Yes/No.
OK_CANCEL : Question with answer values Ok/Cancel.
ABORT_RETRY_IGNORE : Question with answer values Abort/Retry/Ignore.

Possible values are: YES_NOOK_CANCELABORT_RETRY_IGNORE

JSON Example

{
	"default_answer": "string",
	"id": "string",
	"possible_answers": [
		"string"
	],
	"question": {
		"args": [
			"string"
		],
		"default_message": "string",
		"id": "string"
	},
	"type": "YES_NO"
}

Feedback

Was this page helpful?