Show / Hide Table of Contents

Class BaseOutput

Base output.

Inheritance
object
BaseOutput
BoolOutput
CopyableStringOutput
CsvOutput
JsonOutput
LinkOutput
ListOutput
MapOutput
NumberOutput
OcidOutput
StringOutput
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
[JsonConverter(typeof(BaseOutputModelConverter))]
public class BaseOutput

Properties

Description

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

Extended help or summary for understanding output.

Format

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

Hint about formatting or rendering the output value.

IsSensitive

Declaration
[JsonProperty(PropertyName = "isSensitive")]
public bool? IsSensitive { get; set; }
Property Value
Type Description
bool?

If true, marks this output as sensitive.

Title

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

Output label shown to the user.

Visible

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

Expression to show/hide this output.

In this article
Back to top