SendChatMessageResult.java

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.communication.chat.models;

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

/** The SendChatMessageResult model. */
@Immutable
public final class SendChatMessageResult {
    /*
     * A server-generated message id.
     */
    @JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
    private String id;

    /**
     * Get the id property: A server-generated message id.
     *
     * @return the id value.
     */
    public String getId() {
        return this.id;
    }
}