Skip to content

Instantly share code, notes, and snippets.

@msroot
Created March 10, 2016 13:06
Show Gist options
  • Select an option

  • Save msroot/2b470edc348480ced13c to your computer and use it in GitHub Desktop.

Select an option

Save msroot/2b470edc348480ced13c to your computer and use it in GitHub Desktop.
[12] pry(#<Grape::Endpoint>)> object.legal_entity.business_tax_id_provided
=> false
[13] pry(#<Grape::Endpoint>)> object.legal_entity.business_tax_id = 234567896
=> 234567896
[14] pry(#<Grape::Endpoint>)> object.save
[15] pry(#<Grape::Endpoint>)> object.legal_entity.business_tax_id_provided
=> false
[16] pry(#<Grape::Endpoint>)> object.legal_entity[:business_tax_id] = 234567896
=> 234567896
[17] pry(#<Grape::Endpoint>)> object.save
[18] pry(#<Grape::Endpoint>)> object.legal_entity.business_tax_id_provided
=> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment