Skip to content

Instantly share code, notes, and snippets.

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

  • Save msroot/28f701002598cbf4d495 to your computer and use it in GitHub Desktop.

Select an option

Save msroot/28f701002598cbf4d495 to your computer and use it in GitHub Desktop.
irb(main):041:0> account.legal_entity.verification.status
=> "verified"
irb(main):042:0> account.legal_entity.address.city
=> "Corfu"
irb(main):043:0> account.legal_entity.verification.status
=> "verified"
irb(main):044:0> account.legal_entity.address.city
=> "Corfu"
irb(main):045:0> account.legal_entity.address.city = "Ioannina"
=> "Ioannina"
irb(main):046:0> account.save; nil
=> nil
irb(main):047:0> account.legal_entity.verification.status
=> "verified"
irb(main):048:0> account.legal_entity.address.city
=> "Ioannina"
irb(main):049:0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment