com.azure.messaging.eventgrid.systemevents.CommunicationUserIdentifierModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.eventgrid.systemevents;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** A user that got created with an Azure Communication Services resource. */
@Fluent
public final class CommunicationUserIdentifierModel {
/*
* The Id of the communication user.
*/
@JsonProperty(value = "id", required = true)
private String id;
/** Creates an instance of CommunicationUserIdentifierModel class. */
public CommunicationUserIdentifierModel() {}
/**
* Get the id property: The Id of the communication user.
*
* @return the id value.
*/
public String getId() {
return this.id;
}
/**
* Set the id property: The Id of the communication user.
*
* @param id the id value to set.
* @return the CommunicationUserIdentifierModel object itself.
*/
public CommunicationUserIdentifierModel setId(String id) {
this.id = id;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy