Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. @protocol VSAPIClientUser <NSObject>
  2. -(NSString *)lastName;
  3. -(NSString *)firstName;
  4. -(NSString *)uuid;
  5. @end
  6.  
  7. -(void)addUserWithAttributes:(id<VSAPIClientUser>)user;
  8.  
  9. NSDictionary *userAttributes = @{@"last_name" : [user lastName],
  10. @"first_name": [user firstName],
  11. @"uuid": [user uuid]};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement