com.azure.communication.jobrouter.implementation.models.CompleteJobOptionsInternal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-communication-jobrouter Show documentation
Show all versions of azure-communication-jobrouter Show documentation
This package contains a Java SDK for JobRouter Azure Communication Service.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) TypeSpec Code Generator.
package com.azure.communication.jobrouter.implementation.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Request payload for completing jobs.
*/
@Fluent
public final class CompleteJobOptionsInternal {
/*
* A note that will be appended to a job's Notes collection with the current timestamp.
*/
@Generated
@JsonProperty(value = "note")
private String note;
/**
* Creates an instance of CompleteJobOptionsInternal class.
*/
@Generated
public CompleteJobOptionsInternal() {
}
/**
* Get the note property: A note that will be appended to a job's Notes collection with the current timestamp.
*
* @return the note value.
*/
@Generated
public String getNote() {
return this.note;
}
/**
* Set the note property: A note that will be appended to a job's Notes collection with the current timestamp.
*
* @param note the note value to set.
* @return the CompleteJobOptionsInternal object itself.
*/
@Generated
public CompleteJobOptionsInternal setNote(String note) {
this.note = note;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy