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.
719 720 721 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 719 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Create time.
Corresponds to the JSON property createTime
701 702 703 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 701 def create_time @create_time end |
#display_name ⇒ String
Display Name. Limit 64 characters.
Corresponds to the JSON property displayName
706 707 708 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 706 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
712 713 714 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 712 def name @name end |
#update_time ⇒ String
Output only. Update time.
Corresponds to the JSON property updateTime
717 718 719 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 717 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
724 725 726 727 728 729 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 724 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 |