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

com.affinda.api.client.models.ApiUserCreate Maven / Gradle / Ivy

Go to download

This package contains Java Client Library for the Affinda Resume Parser API. For documentation on how to use this package, please see https://github.com/affinda/affinda-java

There is a newer version: 3.16.0
Show newest version
package com.affinda.api.client.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;

/** The ApiUserCreate model. */
@Fluent
public final class ApiUserCreate {
    /*
     * The name property.
     */
    @JsonProperty(value = "name")
    private String name;

    /*
     * The username property.
     */
    @JsonProperty(value = "username")
    private String username;

    /*
     * The email property.
     */
    @JsonProperty(value = "email")
    private String email;

    /*
     * URL of the user's avatar.
     */
    @JsonProperty(value = "avatar")
    private String avatar;

    /*
     * Uniquely identify an organization.
     */
    @JsonProperty(value = "organization", required = true)
    private String organization;

    /**
     * Get the name property: The name property.
     *
     * @return the name value.
     */
    public String getName() {
        return this.name;
    }

    /**
     * Set the name property: The name property.
     *
     * @param name the name value to set.
     * @return the ApiUserCreate object itself.
     */
    public ApiUserCreate setName(String name) {
        this.name = name;
        return this;
    }

    /**
     * Get the username property: The username property.
     *
     * @return the username value.
     */
    public String getUsername() {
        return this.username;
    }

    /**
     * Set the username property: The username property.
     *
     * @param username the username value to set.
     * @return the ApiUserCreate object itself.
     */
    public ApiUserCreate setUsername(String username) {
        this.username = username;
        return this;
    }

    /**
     * Get the email property: The email property.
     *
     * @return the email value.
     */
    public String getEmail() {
        return this.email;
    }

    /**
     * Set the email property: The email property.
     *
     * @param email the email value to set.
     * @return the ApiUserCreate object itself.
     */
    public ApiUserCreate setEmail(String email) {
        this.email = email;
        return this;
    }

    /**
     * Get the avatar property: URL of the user's avatar.
     *
     * @return the avatar value.
     */
    public String getAvatar() {
        return this.avatar;
    }

    /**
     * Set the avatar property: URL of the user's avatar.
     *
     * @param avatar the avatar value to set.
     * @return the ApiUserCreate object itself.
     */
    public ApiUserCreate setAvatar(String avatar) {
        this.avatar = avatar;
        return this;
    }

    /**
     * Get the organization property: Uniquely identify an organization.
     *
     * @return the organization value.
     */
    public String getOrganization() {
        return this.organization;
    }

    /**
     * Set the organization property: Uniquely identify an organization.
     *
     * @param organization the organization value to set.
     * @return the ApiUserCreate object itself.
     */
    public ApiUserCreate setOrganization(String organization) {
        this.organization = organization;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy