Show / Hide Table of Contents

Class CpeDeviceConfigAnswer

An individual answer to a CPE device question.
The answers correlate to the questions that are specific to the CPE device type (see the parameters attribute of {@link CpeDeviceShapeDetail}).

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

Properties

Key

Declaration
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

A string that identifies the question to be answered. See the key attribute in {@link #cpeDeviceConfigQuestion(CpeDeviceConfigQuestionRequest) cpeDeviceConfigQuestion}.

Value

Declaration
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
Property Value
Type Description
string

The answer to the question.

In this article
Back to top