CreateChatThreadResult.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 CreateChatThreadResult model. */
@Immutable
public final class CreateChatThreadResult {
    /*
     * Chat thread Id.
     */
    @JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
    private String id;

    /**
     * Get the id property: Chat thread Id.
     *
     * @return the id value.
     */
    public String getId() {
        return this.id;
    }
}