Class: Azure::CognitiveServices::LocalSearch::V1_0::Models::Identifiable
- Inherits:
-
ResponseBase
- Object
- ResponseBase
- Azure::CognitiveServices::LocalSearch::V1_0::Models::Identifiable
- Includes:
- MsRestAzure
- Defined in:
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/identifiable.rb
Overview
Defines the identity of a resource.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#_type ⇒ Object
Returns the value of attribute _type.
-
#id ⇒ String
A String identifier.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Identifiable class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ Identifiable
constructor
A new instance of Identifiable.
Constructor Details
#initialize ⇒ Identifiable
Returns a new instance of Identifiable.
16 17 18 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/models/identifiable.rb', line 16 def initialize @_type = "Identifiable" end |
Instance Attribute Details
#_type ⇒ Object
Returns the value of attribute _type.
20 21 22 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/models/identifiable.rb', line 20 def _type @_type end |
#id ⇒ String
Returns A String identifier.
23 24 25 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/models/identifiable.rb', line 23 def id @id end |
Class Method Details
.mapper ⇒ Object
Mapper for Identifiable class as Ruby Hash. This will be used for serialization/deserialization.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/models/identifiable.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Identifiable', type: { name: 'Composite', class_name: 'Identifiable', model_properties: { _type: { client_side_validation: true, required: true, serialized_name: '_type', type: { name: 'String' } }, id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } } } } } end |