ChatTranscriptsClient Interface

public interface ChatTranscriptsClient

An instance of this class provides access to all the operations defined in ChatTranscriptsClient.

Method Summary

Modifier and Type Method and Description
abstract ChatTranscriptDetailsInner get(String supportTicketName, String chatTranscriptName)

Returns chatTranscript details for a support ticket under a subscription.

abstract Response<ChatTranscriptDetailsInner> getWithResponse(String supportTicketName, String chatTranscriptName, Context context)

Returns chatTranscript details for a support ticket under a subscription.

abstract PagedIterable<ChatTranscriptDetailsInner> list(String supportTicketName)

Lists all chat transcripts for a support ticket under subscription.

abstract PagedIterable<ChatTranscriptDetailsInner> list(String supportTicketName, Context context)

Lists all chat transcripts for a support ticket under subscription.

Method Details

get

public abstract ChatTranscriptDetailsInner get(String supportTicketName, String chatTranscriptName)

Returns chatTranscript details for a support ticket under a subscription.

Parameters:

supportTicketName - Support ticket name.
chatTranscriptName - ChatTranscript name.

Returns:

object that represents a Chat Transcript resource.

getWithResponse

public abstract Response getWithResponse(String supportTicketName, String chatTranscriptName, Context context)

Returns chatTranscript details for a support ticket under a subscription.

Parameters:

supportTicketName - Support ticket name.
chatTranscriptName - ChatTranscript name.
context - The context to associate with this operation.

Returns:

object that represents a Chat Transcript resource along with Response<T>.

list

public abstract PagedIterable list(String supportTicketName)

Lists all chat transcripts for a support ticket under subscription.

Parameters:

supportTicketName - Support ticket name.

Returns:

collection of Chat Transcripts resources as paginated response with PagedIterable<T>.

list

public abstract PagedIterable list(String supportTicketName, Context context)

Lists all chat transcripts for a support ticket under subscription.

Parameters:

supportTicketName - Support ticket name.
context - The context to associate with this operation.

Returns:

collection of Chat Transcripts resources as paginated response with PagedIterable<T>.

Applies to