Class: Io::Flow::V0::Models::ShippingLabelDocument
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ShippingLabelDocument
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Output data or downloadable links for shipping label documents such as labels or commercial invoices
Instance Attribute Summary collapse
-
#html ⇒ Object
readonly
Returns the value of attribute html.
-
#pdf ⇒ Object
readonly
Returns the value of attribute pdf.
-
#png ⇒ Object
readonly
Returns the value of attribute png.
-
#zpl ⇒ Object
readonly
Returns the value of attribute zpl.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ShippingLabelDocument
constructor
A new instance of ShippingLabelDocument.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ShippingLabelDocument
Returns a new instance of ShippingLabelDocument.
39244 39245 39246 39247 39248 39249 39250 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39244 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) @zpl = (x = opts.delete(:zpl); x.nil? ? nil : HttpClient::Preconditions.assert_class('zpl', x, String)) @pdf = (x = opts.delete(:pdf); x.nil? ? nil : HttpClient::Preconditions.assert_class('pdf', x, String)) @png = (x = opts.delete(:png); x.nil? ? nil : HttpClient::Preconditions.assert_class('png', x, String)) @html = (x = opts.delete(:html); x.nil? ? nil : HttpClient::Preconditions.assert_class('html', x, String)) end |
Instance Attribute Details
#html ⇒ Object (readonly)
Returns the value of attribute html.
39242 39243 39244 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39242 def html @html end |
#pdf ⇒ Object (readonly)
Returns the value of attribute pdf.
39242 39243 39244 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39242 def pdf @pdf end |
#png ⇒ Object (readonly)
Returns the value of attribute png.
39242 39243 39244 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39242 def png @png end |
#zpl ⇒ Object (readonly)
Returns the value of attribute zpl.
39242 39243 39244 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39242 def zpl @zpl end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
39256 39257 39258 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39256 def copy(incoming={}) ShippingLabelDocument.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
39260 39261 39262 39263 39264 39265 39266 39267 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39260 def to_hash { :zpl => zpl, :pdf => pdf, :png => png, :html => html } end |
#to_json ⇒ Object
39252 39253 39254 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39252 def to_json JSON.dump(to_hash) end |