Case class
A Case is an object that contains the details of a support case.
It contains fields for the time it was created, its priority, its
classification, and more. Cases can also have comments and attachments that
get added over time. A case is parented by a Google Cloud organization or
project. Organizations are identified by a number, so the name of a case
parented by an organization would look like this: organizations/123/cases/456
Projects have two unique identifiers, an ID
and a number, and they look like this: projects/abc/cases/456
projects/123/cases/456
You can use either of them when calling the API.
To learn more about project identifiers, see
[AIP-2510](https://google.aip.dev/cloud/2510).
Constructors
-
Case({CaseClassification? classification, String? contactEmail, String? createTime, Actor? creator, String? description, String? displayName, bool? escalated, String? languageCode, String? name, String? priority, String? state, List<
String> ? subscriberEmailAddresses, bool? testCase, String? timeZone, String? updateTime}) - Case.fromJson(Map json_)
Properties
- classification ↔ CaseClassification?
-
The issue classification applicable to this case.
getter/setter pair
- contactEmail ↔ String?
-
A user-supplied email address to send case update notifications for.
getter/setter pair
- createTime ↔ String?
-
The time this case was created.
getter/setter pair
- creator ↔ Actor?
-
The user who created the case.
getter/setter pair
- description ↔ String?
-
A broad description of the issue.
getter/setter pair
- displayName ↔ String?
-
The short summary of the issue reported in this case.
getter/setter pair
- escalated ↔ bool?
-
Whether the case is currently escalated.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- languageCode ↔ String?
-
The language the user has requested to receive support in.
getter/setter pair
- name ↔ String?
-
The resource name for the case.
getter/setter pair
- priority ↔ String?
-
The priority of this case.
Possible string values are:
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- state ↔ String?
-
The current status of the support case.
getter/setter pair
-
subscriberEmailAddresses
↔ List<
String> ? -
The email addresses to receive updates on this case.
getter/setter pair
- testCase ↔ bool?
-
Whether this case was created for internal API testing and should not be
acted on by the support team.
getter/setter pair
- timeZone ↔ String?
-
The timezone of the user who created the support case.
getter/setter pair
- updateTime ↔ String?
-
The time this case was last updated.
getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited