com.azure.messaging.eventgrid.systemevents.AcsChatThreadMemberProperties 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;
/** The AcsChatThreadMemberProperties model. */
@Fluent
public final class AcsChatThreadMemberProperties {
/*
* The name of the user
*/
@JsonProperty(value = "displayName")
private String displayName;
/*
* The MRI of the user
*/
@JsonProperty(value = "memberId")
private String memberId;
/**
* Creates an instance of AcsChatThreadEventBaseProperties class
*/
public AcsChatThreadMemberProperties() {
}
/**
* Get the displayName property: The name of the user.
*
* @return the displayName value.
*/
public String getDisplayName() {
return this.displayName;
}
/**
* Set the displayName property: The name of the user.
*
* @param displayName the displayName value to set.
* @return the AcsChatThreadMemberProperties object itself.
*/
public AcsChatThreadMemberProperties setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* Get the memberId property: The MRI of the user.
*
* @return the memberId value.
*/
public String getMemberId() {
return this.memberId;
}
/**
* Set the memberId property: The MRI of the user.
*
* @param memberId the memberId value to set.
* @return the AcsChatThreadMemberProperties object itself.
*/
public AcsChatThreadMemberProperties setMemberId(String memberId) {
this.memberId = memberId;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy