Class: Google::Apis::FirebasecrashlyticsV1alpha::Note
- Inherits:
-
Object
- Object
- Google::Apis::FirebasecrashlyticsV1alpha::Note
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasecrashlytics_v1alpha/classes.rb,
lib/google/apis/firebasecrashlytics_v1alpha/representations.rb,
lib/google/apis/firebasecrashlytics_v1alpha/representations.rb
Overview
Developer notes for an issue.
Instance Attribute Summary collapse
-
#author ⇒ String
Output only.
-
#body ⇒ String
Immutable.
-
#create_time ⇒ String
Output only.
-
#name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Note
constructor
A new instance of Note.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Note
Returns a new instance of Note.
1102 1103 1104 |
# File 'lib/google/apis/firebasecrashlytics_v1alpha/classes.rb', line 1102 def initialize(**args) update!(**args) end |
Instance Attribute Details
#author ⇒ String
Output only. The email of the author of the note.
Corresponds to the JSON property author
1084 1085 1086 |
# File 'lib/google/apis/firebasecrashlytics_v1alpha/classes.rb', line 1084 def @author end |
#body ⇒ String
Immutable. The body of the note.
Corresponds to the JSON property body
1089 1090 1091 |
# File 'lib/google/apis/firebasecrashlytics_v1alpha/classes.rb', line 1089 def body @body end |
#create_time ⇒ String
Output only. Time when the note was created.
Corresponds to the JSON property createTime
1094 1095 1096 |
# File 'lib/google/apis/firebasecrashlytics_v1alpha/classes.rb', line 1094 def create_time @create_time end |
#name ⇒ String
Output only. Identifier. Format: "projects/project/apps/app/issues/issue/
notes/note".
Corresponds to the JSON property name
1100 1101 1102 |
# File 'lib/google/apis/firebasecrashlytics_v1alpha/classes.rb', line 1100 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1107 1108 1109 1110 1111 1112 |
# File 'lib/google/apis/firebasecrashlytics_v1alpha/classes.rb', line 1107 def update!(**args) @author = args[:author] if args.key?(:author) @body = args[:body] if args.key?(:body) @create_time = args[:create_time] if args.key?(:create_time) @name = args[:name] if args.key?(:name) end |