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.
1213 1214 1215 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1213 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Create time.
Corresponds to the JSON property createTime
1195 1196 1197 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1195 def create_time @create_time end |
#display_name ⇒ String
Display Name. Limit 64 characters.
Corresponds to the JSON property displayName
1200 1201 1202 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1200 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
1206 1207 1208 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1206 def name @name end |
#update_time ⇒ String
Output only. Update time.
Corresponds to the JSON property updateTime
1211 1212 1213 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1211 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1218 1219 1220 1221 1222 1223 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 1218 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 |