All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mercadopago.resources.user.User Maven / Gradle / Ivy

There is a newer version: 2.1.29
Show newest version
package com.mercadopago.resources.user;

import com.mercadopago.net.MPResource;
import lombok.Getter;

/** User information.. */
@Getter
public class User extends MPResource {

  /** Id of the user. */
  private Long id;

  /** Nickname of user. */
  private String nickname;

  /** First name of user. */
  private String firstName;

  /** Last name of user. */
  private String lastName;

  /** Email of the user. */
  private String email;

  /** Id of the user's site. */
  private String siteId;

  /** Id of the user's country. */
  private String countryId;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy