The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Finance::Robinhood::User - Represents a Single Authorized User

SYNOPSIS

    use Finance::Robinhood;
    my $rh = Finance::Robinhood->new;
    
    my $user = $rh->user();
    CORE::say $user->first_name . ' ' . $user->last_name;

METHODS

email( )

Email address attached to the account.

email_verified( )

Returns true if the email has been verified.

id( )

UUID used to represent this user.

first_name( )

Legal first name of the account's owner.

last_name( )

Legal last name of the account's owner.

username( )

The username used to log in to the account.

additional_info( )

    $user->additional_info();

Returns a Finance::Robinhood::User::AdditionalInfo object.

basic_info( )

    $user->basic_info();

Returns a Finance::Robinhood::User::BasicInfo object.

created_at( )

    $user->created_at();

Returns a Time::Moment object.

employment( )

    $user->employment();

Returns a Finance::Robinhood::User::Employment object.

id_info( )

    $user->id_info();

Returns a Finance::Robinhood::User::IDInfo object.

international_info( )

    $user->international_info();

Returns a Finance::Robinhood::User::InternationalInfo object if the user is a non-US citizen.

profile( )

    $user->profile();

Returns a Finance::Robinhood::User::Profile object.

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>