PhoneNumbersSearchAvailablePhoneNumbersHeaders.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.phonenumbers.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The PhoneNumbersSearchAvailablePhoneNumbersHeaders model. */
@Fluent
public final class PhoneNumbersSearchAvailablePhoneNumbersHeaders {
/*
* The operation-id property.
*/
@JsonProperty(value = "operation-id")
private String operationId;
/*
* The search-id property.
*/
@JsonProperty(value = "search-id")
private String searchId;
/*
* The Operation-Location property.
*/
@JsonProperty(value = "Operation-Location")
private String operationLocation;
/*
* The Location property.
*/
@JsonProperty(value = "Location")
private String location;
/**
* Get the operationId property: The operation-id property.
*
* @return the operationId value.
*/
public String getOperationId() {
return this.operationId;
}
/**
* Set the operationId property: The operation-id property.
*
* @param operationId the operationId value to set.
* @return the PhoneNumbersSearchAvailablePhoneNumbersHeaders object itself.
*/
public PhoneNumbersSearchAvailablePhoneNumbersHeaders setOperationId(String operationId) {
this.operationId = operationId;
return this;
}
/**
* Get the searchId property: The search-id property.
*
* @return the searchId value.
*/
public String getSearchId() {
return this.searchId;
}
/**
* Set the searchId property: The search-id property.
*
* @param searchId the searchId value to set.
* @return the PhoneNumbersSearchAvailablePhoneNumbersHeaders object itself.
*/
public PhoneNumbersSearchAvailablePhoneNumbersHeaders setSearchId(String searchId) {
this.searchId = searchId;
return this;
}
/**
* Get the operationLocation property: The Operation-Location property.
*
* @return the operationLocation value.
*/
public String getOperationLocation() {
return this.operationLocation;
}
/**
* Set the operationLocation property: The Operation-Location property.
*
* @param operationLocation the operationLocation value to set.
* @return the PhoneNumbersSearchAvailablePhoneNumbersHeaders object itself.
*/
public PhoneNumbersSearchAvailablePhoneNumbersHeaders setOperationLocation(String operationLocation) {
this.operationLocation = operationLocation;
return this;
}
/**
* Get the location property: The Location property.
*
* @return the location value.
*/
public String getLocation() {
return this.location;
}
/**
* Set the location property: The Location property.
*
* @param location the location value to set.
* @return the PhoneNumbersSearchAvailablePhoneNumbersHeaders object itself.
*/
public PhoneNumbersSearchAvailablePhoneNumbersHeaders setLocation(String location) {
this.location = location;
return this;
}
}