NAME
Finance::Robinhood::User::BasicInfo - Access Basic Data About the Current User
SYNOPSIS
use Finance::Robinhood;
my $rh = Finance::Robinhood->new;
my $user = $rh->user;
my $info = $user->basic_info;
CORE::say 'User was born ' . $info->date_of_birth;
METHODS
address( )
Mailing address box number or street and number.
citizenship( )
National code.
city( )
Mailing address city or town.
country_of_residence( )
National code.
date_of_birth( )
Returns a Time::Moment object.
marital_status( )
single
, divorced
, etc.
number_dependents( )
Returns a integer.
phone_number( )
Returns the attached phone number.
signup_as_rhs( )
Returns a true value if the user joined after the move from Apex to Robinhood Securities.
state( )
State code.
tax_id_ssn( )
Last four digits of the user's SSN.
zipcode( )
Mailing address zip code.
updated_at( )
$user->updated_at();
Returns a Time::Moment object.
user( )
$order->user();
Reloads the data for this order from the API server.
Use this if you think the status or some other info might have changed.
LEGAL
This is a simple wrapper around the API used in the official apps. The author provides no investment, legal, or tax advice and is not responsible for any damages incurred while using this software. This software is not affiliated with Robinhood Financial LLC in any way.
For Robinhood's terms and disclosures, please see their website at https://robinhood.com/legal/
LICENSE
Copyright (C) Sanko Robinson.
This library is free software; you can redistribute it and/or modify it under the terms found in the Artistic License 2. Other copyrights, terms, and conditions may apply to data transmitted through this module. Please refer to the LEGAL section.
AUTHOR
Sanko Robinson <sanko@cpan.org>