Class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p4beta1Celebrity
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p4beta1Celebrity
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vision_v1p1beta1/classes.rb,
lib/google/apis/vision_v1p1beta1/representations.rb,
lib/google/apis/vision_v1p1beta1/representations.rb
Overview
A Celebrity is a group of Faces with an identity.
Instance Attribute Summary collapse
-
#description ⇒ String
The Celebrity's description.
-
#display_name ⇒ String
The Celebrity's display name.
-
#name ⇒ String
The resource name of the preloaded Celebrity.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVisionV1p4beta1Celebrity
constructor
A new instance of GoogleCloudVisionV1p4beta1Celebrity.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVisionV1p4beta1Celebrity
Returns a new instance of GoogleCloudVisionV1p4beta1Celebrity.
7090 7091 7092 |
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 7090 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
The Celebrity's description.
Corresponds to the JSON property description
7078 7079 7080 |
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 7078 def description @description end |
#display_name ⇒ String
The Celebrity's display name.
Corresponds to the JSON property displayName
7083 7084 7085 |
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 7083 def display_name @display_name end |
#name ⇒ String
The resource name of the preloaded Celebrity. Has the format builtin/mid`.
Corresponds to the JSON propertyname`
7088 7089 7090 |
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 7088 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7095 7096 7097 7098 7099 |
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 7095 def update!(**args) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) end |