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

com.affinda.api.client.models.InvitationUpdate 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 InvitationUpdate model. */
@Fluent
public final class InvitationUpdate {
    /*
     * The role property.
     */
    @JsonProperty(value = "role")
    private OrganizationRole role;

    /**
     * Get the role property: The role property.
     *
     * @return the role value.
     */
    public OrganizationRole getRole() {
        return this.role;
    }

    /**
     * Set the role property: The role property.
     *
     * @param role the role value to set.
     * @return the InvitationUpdate object itself.
     */
    public InvitationUpdate setRole(OrganizationRole role) {
        this.role = role;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy