| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | package WebService::Slack::WebApi::Users; | 
| 2 | 3 |  |  | 3 |  | 2237 | use strict; | 
|  | 3 |  |  |  |  | 7 |  | 
|  | 3 |  |  |  |  | 90 |  | 
| 3 | 3 |  |  | 3 |  | 16 | use warnings; | 
|  | 3 |  |  |  |  | 7 |  | 
|  | 3 |  |  |  |  | 71 |  | 
| 4 | 3 |  |  | 3 |  | 20 | use utf8; | 
|  | 3 |  |  |  |  | 7 |  | 
|  | 3 |  |  |  |  | 14 |  | 
| 5 |  |  |  |  |  |  |  | 
| 6 | 3 |  |  | 3 |  | 87 | use parent 'WebService::Slack::WebApi::Base'; | 
|  | 3 |  |  |  |  | 7 |  | 
|  | 3 |  |  |  |  | 16 |  | 
| 7 |  |  |  |  |  |  |  | 
| 8 | 3 |  |  | 3 |  | 1574 | use WebService::Slack::WebApi::Users::Profile; | 
|  | 3 |  |  |  |  | 10 |  | 
|  | 3 |  |  |  |  | 114 |  | 
| 9 |  |  |  |  |  |  |  | 
| 10 |  |  |  |  |  |  | use Class::Accessor::Lite::Lazy ( | 
| 11 | 3 |  |  |  |  | 33 | ro_lazy => [qw/ profile /], | 
| 12 | 3 |  |  | 3 |  | 23 | ); | 
|  | 3 |  |  |  |  | 8 |  | 
| 13 |  |  |  |  |  |  |  | 
| 14 |  |  |  |  |  |  | use WebService::Slack::WebApi::Generator ( | 
| 15 | 3 |  |  |  |  | 59 | delete_photo => +{}, | 
| 16 |  |  |  |  |  |  | get_presence => { | 
| 17 |  |  |  |  |  |  | user => 'Str', | 
| 18 |  |  |  |  |  |  | }, | 
| 19 |  |  |  |  |  |  | identity => +{}, | 
| 20 |  |  |  |  |  |  | info => { | 
| 21 |  |  |  |  |  |  | user => 'Str', | 
| 22 |  |  |  |  |  |  | }, | 
| 23 |  |  |  |  |  |  | list => { | 
| 24 |  |  |  |  |  |  | cursor   => { isa => 'Str',  optional => 1 }, | 
| 25 |  |  |  |  |  |  | limit    => { isa => 'Int',  optional => 1 }, | 
| 26 |  |  |  |  |  |  | presence => { isa => 'Bool', optional => 1 }, | 
| 27 |  |  |  |  |  |  | }, | 
| 28 |  |  |  |  |  |  | set_active => +{}, | 
| 29 |  |  |  |  |  |  |  | 
| 30 |  |  |  |  |  |  | set_presence => { | 
| 31 |  |  |  |  |  |  | presence => 'Str', | 
| 32 |  |  |  |  |  |  | }, | 
| 33 | 3 |  |  | 3 |  | 549 | ); | 
|  | 3 |  |  |  |  | 7 |  | 
| 34 |  |  |  |  |  |  |  | 
| 35 |  |  |  |  |  |  | sub _build_profile { | 
| 36 | 2 |  |  | 2 |  | 3046 | return WebService::Slack::WebApi::Users::Profile->new(client => shift->client); | 
| 37 |  |  |  |  |  |  | } | 
| 38 |  |  |  |  |  |  |  | 
| 39 |  |  |  |  |  |  | 1; | 
| 40 |  |  |  |  |  |  |  | 
| 41 |  |  |  |  |  |  |  |