Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AuthorizedViewSet
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AuthorizedViewSet
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb
Overview
An AuthorizedViewSet contains a set of AuthorizedView resources.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Display Name.
-
#name ⇒ String
Identifier.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1AuthorizedViewSet
constructor
A new instance of GoogleCloudContactcenterinsightsV1AuthorizedViewSet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1AuthorizedViewSet
Returns a new instance of GoogleCloudContactcenterinsightsV1AuthorizedViewSet.
1107 1108 1109 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1107 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Create time.
Corresponds to the JSON property createTime
1089 1090 1091 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1089 def create_time @create_time end |
#display_name ⇒ String
Display Name. Limit 64 characters.
Corresponds to the JSON property displayName
1094 1095 1096 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1094 def display_name @display_name end |
#name ⇒ String
Identifier. The resource name of the AuthorizedViewSet. Format: projects/
project/locations/location/authorizedViewSets/authorized_view_set
Corresponds to the JSON property name
1100 1101 1102 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1100 def name @name end |
#update_time ⇒ String
Output only. Update time.
Corresponds to the JSON property updateTime
1105 1106 1107 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1105 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1112 1113 1114 1115 1116 1117 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1112 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end |