CustomResourceColumnDefinition class
CustomResourceColumnDefinition specifies a column for server side printing.
Constructors
- CustomResourceColumnDefinition({String? description, String? format, required String jsonPath, required String name, int? priority, required String type})
-
Default constructor.
const
-
CustomResourceColumnDefinition.fromJson(Map<
String, dynamic> json) -
Creates a CustomResourceColumnDefinition from JSON data.
factory
Properties
- description → String?
-
description is a human readable description of this column.
final
- format → String?
-
format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- jsonPath → String
-
jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.
final
- name → String
-
name is a human readable name for the column.
final
- priority → int?
-
priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- type → String
-
type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, Object> - Converts a CustomResourceColumnDefinition instance to JSON data.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited