com.azure.communication.jobrouter.models.ReclassifyJobOptions 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.models;
import com.azure.core.annotation.Generated;
import com.azure.core.annotation.Immutable;
/** Request payload for reclassifying jobs. */
@Immutable
public final class ReclassifyJobOptions {
/**
* id of job.
*/
private final String jobId;
/**
* Creates an instance of ReclassifyJobOptionsInternal class.
* @param jobId jobId.
*/
@Generated
public ReclassifyJobOptions(String jobId) {
this.jobId = jobId;
}
/**
* Get id.
* @return id.
*/
public String getJobId() {
return this.jobId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy