gitlab_support_readiness 1.0.42 → 1.0.43
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/support_readiness/zendesk/tickets.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 84d60db4cb6453988da1417579de9dd77a4199172f0cd4403aed9c00478e580e
|
4
|
+
data.tar.gz: 592cc86adc0f7b7d714b04d632c6ffca6962ab95a30a9a6201333e519b7cc4c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae6d0084f999c7b5eb154a868d967bd4c12c35013ee3c82c619bac3e2b95f66fb50d484622d17d0593067f243814def1d53b86085afb4dea0d22dc97aa87f00b
|
7
|
+
data.tar.gz: 1d147771ce89c7debd366af07777915d06b2cfe214c3f926d5b55ff58a9bb02b976defd4db2225e172235565ef72b09d21dbba5bd18a9081605f52a651dc152a
|
@@ -10,7 +10,7 @@ module Readiness
|
|
10
10
|
# @author Jason Colyer
|
11
11
|
# @since 1.0.0
|
12
12
|
class Tickets < Readiness::Client
|
13
|
-
attr_accessor :assignee_id, :additional_tags, :brand_id, :collaborator_ids, :comment, :custom_fields, :custom_status_id, :description, :due_at, :email_cc_ids, :fields, :follower_ids, :followup_ids, :group_id, :has_incidents, :id, :is_public, :organization_id, :priority, :problem_id, :remove_tags, :requester_id, :satisfaction_rating, :status, :subject, :submitter_id, :tags, :ticket_form_id, :type, :via, :via_followup_source_id
|
13
|
+
attr_accessor :assignee_id, :additional_tags, :brand_id, :collaborator_ids, :comment, :created_at, :custom_fields, :custom_status_id, :description, :due_at, :email_cc_ids, :fields, :follower_ids, :followup_ids, :group_id, :has_incidents, :id, :is_public, :organization_id, :priority, :problem_id, :remove_tags, :requester_id, :satisfaction_rating, :status, :subject, :submitter_id, :tags, :ticket_form_id, :type, :updated_at, :via, :via_followup_source_id
|
14
14
|
|
15
15
|
##
|
16
16
|
# Creates a new {Readiness::Zendesk::Tickets} instance
|
@@ -27,6 +27,7 @@ module Readiness
|
|
27
27
|
@brand_id = object['brand_id']
|
28
28
|
@collaborator_ids = object['collaborator_ids']
|
29
29
|
@comment = object['comment']
|
30
|
+
@created_at = object['created_at']
|
30
31
|
@custom_fields = object['custom_fields']
|
31
32
|
@custom_status_id = object['custom_status_id']
|
32
33
|
@description = object['description']
|
@@ -51,6 +52,7 @@ module Readiness
|
|
51
52
|
@tags = object['tags']
|
52
53
|
@ticket_form_id = object['ticket_form_id']
|
53
54
|
@type = object['type']
|
55
|
+
@updated_at = object['updated_at']
|
54
56
|
@via = object['via']
|
55
57
|
@via_followup_source_id = object['via_followup_source_id']
|
56
58
|
end
|