class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryData
the Api category resource.
Attributes
id[RW]
ID of the category (a UUID). Corresponds to the JSON property `id` @return [String]
name[RW]
Name of the category. Corresponds to the JSON property `name` @return [String]
site_id[RW]
Name of the portal. Corresponds to the JSON property `siteId` @return [String]
update_time[RW]
Time the category was last modified in milliseconds since epoch. Corresponds to the JSON property `updateTime` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 428 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 433 def update!(**args) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @site_id = args[:site_id] if args.key?(:site_id) @update_time = args[:update_time] if args.key?(:update_time) end