CommunicationDetailsProperties Class

  • java.lang.Object
    • com.azure.resourcemanager.support.fluent.models.CommunicationDetailsProperties

Implements

public final class CommunicationDetailsProperties
implements JsonSerializable<CommunicationDetailsProperties>

Describes the properties of a communication resource.

Constructor Summary

Constructor Description
CommunicationDetailsProperties()

Creates an instance of CommunicationDetailsProperties class.

Method Summary

Modifier and Type Method and Description
String body()

Get the body property: Body of the communication.

CommunicationDirection communicationDirection()

Get the communicationDirection property: Direction of communication.

CommunicationType communicationType()

Get the communicationType property: Communication type.

OffsetDateTime createdDate()

Get the createdDate property: Time in UTC (ISO 8601 format) when the communication was created.

static CommunicationDetailsProperties fromJson(JsonReader jsonReader)

Reads an instance of CommunicationDetailsProperties from the JsonReader.

String sender()

Get the sender property: Email address of the sender.

String subject()

Get the subject property: Subject of the communication.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

CommunicationDetailsProperties withBody(String body)

Set the body property: Body of the communication.

CommunicationDetailsProperties withSender(String sender)

Set the sender property: Email address of the sender.

CommunicationDetailsProperties withSubject(String subject)

Set the subject property: Subject of the communication.

Methods inherited from java.lang.Object

Constructor Details

CommunicationDetailsProperties

public CommunicationDetailsProperties()

Creates an instance of CommunicationDetailsProperties class.

Method Details

body

public String body()

Get the body property: Body of the communication.

Returns:

the body value.

communicationDirection

public CommunicationDirection communicationDirection()

Get the communicationDirection property: Direction of communication.

Returns:

the communicationDirection value.

communicationType

public CommunicationType communicationType()

Get the communicationType property: Communication type.

Returns:

the communicationType value.

createdDate

public OffsetDateTime createdDate()

Get the createdDate property: Time in UTC (ISO 8601 format) when the communication was created.

Returns:

the createdDate value.

fromJson

public static CommunicationDetailsProperties fromJson(JsonReader jsonReader)

Reads an instance of CommunicationDetailsProperties from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of CommunicationDetailsProperties if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If the deserialized JSON object was missing any required properties.

sender

public String sender()

Get the sender property: Email address of the sender. This property is required if called by a service principal.

Returns:

the sender value.

subject

public String subject()

Get the subject property: Subject of the communication.

Returns:

the subject value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

withBody

public CommunicationDetailsProperties withBody(String body)

Set the body property: Body of the communication.

Parameters:

body - the body value to set.

Returns:

the CommunicationDetailsProperties object itself.

withSender

public CommunicationDetailsProperties withSender(String sender)

Set the sender property: Email address of the sender. This property is required if called by a service principal.

Parameters:

sender - the sender value to set.

Returns:

the CommunicationDetailsProperties object itself.

withSubject

public CommunicationDetailsProperties withSubject(String subject)

Set the subject property: Subject of the communication.

Parameters:

subject - the subject value to set.

Returns:

the CommunicationDetailsProperties object itself.

Applies to