Class: PinterestSdkClient::OrderLine
- Inherits:
-
ApiModelBase
- Object
- ApiModelBase
- PinterestSdkClient::OrderLine
- Defined in:
- lib/pinterest_sdk/models/order_line.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#ad_account_id ⇒ Object
Ad account ID.
-
#budget ⇒ Object
Order line budget in micro currency.
-
#campaign_ids ⇒ Object
Associated List of campaign IDs.
-
#end_time ⇒ Object
End time.
-
#id ⇒ Object
Order line ID.
-
#name ⇒ Object
Order line name.
-
#paid_budget ⇒ Object
Order line paid budget in micro currency.
-
#paid_type ⇒ Object
Order line paid type.
-
#purchase_order_id ⇒ Object
Purchase order ID.
-
#start_time ⇒ Object
Start time.
-
#status ⇒ Object
Order line status.
-
#type ⇒ Object
Always "orderline".
Class Method Summary collapse
-
.acceptable_attribute_map ⇒ Object
Returns attribute mapping this model knows about.
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3).
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ OrderLine
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Methods inherited from ApiModelBase
_deserialize, #_to_hash, #to_body, #to_s
Constructor Details
#initialize(attributes = {}) ⇒ OrderLine
Initializes the object
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 143 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `PinterestSdkClient::OrderLine` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key acceptable_attribute_map = self.class.acceptable_attribute_map attributes = attributes.each_with_object({}) { |(k, v), h| if (!acceptable_attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `PinterestSdkClient::OrderLine`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'ad_account_id') self.ad_account_id = attributes[:'ad_account_id'] end if attributes.key?(:'budget') self.budget = attributes[:'budget'] end if attributes.key?(:'end_time') self.end_time = attributes[:'end_time'] end if attributes.key?(:'id') self.id = attributes[:'id'] end if attributes.key?(:'name') self.name = attributes[:'name'] end if attributes.key?(:'paid_budget') self.paid_budget = attributes[:'paid_budget'] end if attributes.key?(:'paid_type') self.paid_type = attributes[:'paid_type'] end if attributes.key?(:'purchase_order_id') self.purchase_order_id = attributes[:'purchase_order_id'] end if attributes.key?(:'start_time') self.start_time = attributes[:'start_time'] end if attributes.key?(:'status') self.status = attributes[:'status'] end if attributes.key?(:'type') self.type = attributes[:'type'] end if attributes.key?(:'campaign_ids') if (value = attributes[:'campaign_ids']).is_a?(Array) self.campaign_ids = value end else self.campaign_ids = nil end end |
Instance Attribute Details
#ad_account_id ⇒ Object
Ad account ID.
19 20 21 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 19 def ad_account_id @ad_account_id end |
#budget ⇒ Object
Order line budget in micro currency.
22 23 24 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 22 def budget @budget end |
#campaign_ids ⇒ Object
Associated List of campaign IDs.
52 53 54 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 52 def campaign_ids @campaign_ids end |
#end_time ⇒ Object
End time. Unix timestamp.
25 26 27 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 25 def end_time @end_time end |
#id ⇒ Object
Order line ID.
28 29 30 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 28 def id @id end |
#name ⇒ Object
Order line name.
31 32 33 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 31 def name @name end |
#paid_budget ⇒ Object
Order line paid budget in micro currency.
34 35 36 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 34 def paid_budget @paid_budget end |
#paid_type ⇒ Object
Order line paid type.
37 38 39 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 37 def paid_type @paid_type end |
#purchase_order_id ⇒ Object
Purchase order ID.
40 41 42 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 40 def purchase_order_id @purchase_order_id end |
#start_time ⇒ Object
Start time. Unix timestamp.
43 44 45 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 43 def start_time @start_time end |
#status ⇒ Object
Order line status.
46 47 48 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 46 def status @status end |
#type ⇒ Object
Always "orderline".
49 50 51 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 49 def type @type end |
Class Method Details
.acceptable_attribute_map ⇒ Object
Returns attribute mapping this model knows about
95 96 97 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 95 def self.acceptable_attribute_map attribute_map end |
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
100 101 102 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 100 def self.acceptable_attributes acceptable_attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 77 def self.attribute_map { :'ad_account_id' => :'ad_account_id', :'budget' => :'budget', :'end_time' => :'end_time', :'id' => :'id', :'name' => :'name', :'paid_budget' => :'paid_budget', :'paid_type' => :'paid_type', :'purchase_order_id' => :'purchase_order_id', :'start_time' => :'start_time', :'status' => :'status', :'type' => :'type', :'campaign_ids' => :'campaign_ids' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 295 def self.build_from_hash(attributes) return nil unless attributes.is_a?(Hash) attributes = attributes.transform_keys(&:to_sym) transformed_hash = {} openapi_types.each_pair do |key, type| if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil? transformed_hash["#{key}"] = nil elsif type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[attribute_map[key]].is_a?(Array) transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) } end elsif !attributes[attribute_map[key]].nil? transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]]) end end new(transformed_hash) end |
.openapi_all_of ⇒ Object
List of class defined in allOf (OpenAPI v3)
135 136 137 138 139 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 135 def self.openapi_all_of [ :'OrderLines' ] end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
123 124 125 126 127 128 129 130 131 132 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 123 def self.openapi_nullable Set.new([ :'budget', :'end_time', :'name', :'paid_budget', :'paid_type', :'purchase_order_id', ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 105 def self.openapi_types { :'ad_account_id' => :'String', :'budget' => :'Float', :'end_time' => :'Float', :'id' => :'String', :'name' => :'String', :'paid_budget' => :'Float', :'paid_type' => :'OrderLinePaidType', :'purchase_order_id' => :'String', :'start_time' => :'Float', :'status' => :'OrderLineStatus', :'type' => :'String', :'campaign_ids' => :'Array<String>' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 263 def ==(o) return true if self.equal?(o) self.class == o.class && ad_account_id == o.ad_account_id && budget == o.budget && end_time == o.end_time && id == o.id && name == o.name && paid_budget == o.paid_budget && paid_type == o.paid_type && purchase_order_id == o.purchase_order_id && start_time == o.start_time && status == o.status && type == o.type && campaign_ids == o.campaign_ids end |
#eql?(o) ⇒ Boolean
282 283 284 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 282 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
288 289 290 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 288 def hash [ad_account_id, budget, end_time, id, name, paid_budget, paid_type, purchase_order_id, start_time, status, type, campaign_ids].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 212 def list_invalid_properties warn '[DEPRECATED] the `list_invalid_properties` method is obsolete' invalid_properties = Array.new pattern = Regexp.new(/^\d+$/) if !@id.nil? && @id !~ pattern invalid_properties.push("invalid value for \"id\", must conform to the pattern #{pattern}.") end if @campaign_ids.nil? invalid_properties.push('invalid value for "campaign_ids", campaign_ids cannot be nil.') end invalid_properties end |
#to_hash ⇒ Hash
Returns the object in the form of hash
317 318 319 320 321 322 323 324 325 326 327 328 329 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 317 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
229 230 231 232 233 234 |
# File 'lib/pinterest_sdk/models/order_line.rb', line 229 def valid? warn '[DEPRECATED] the `valid?` method is obsolete' return false if !@id.nil? && @id !~ Regexp.new(/^\d+$/) return false if @campaign_ids.nil? true end |