com.microsoft.bing.autosuggest.models.Action Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bing-autosuggest Show documentation
Show all versions of bing-autosuggest Show documentation
This module contains the client library for Microsoft Bing AutoSuggest APIs.
The newest version!
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.bing.autosuggest.models;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The Action model.
*/
public class Action extends CreativeWork {
/**
* The result property.
*/
@JsonProperty(value = "result", access = JsonProperty.Access.WRITE_ONLY)
private List result;
/**
* The displayName property.
*/
@JsonProperty(value = "displayName", access = JsonProperty.Access.WRITE_ONLY)
private String displayName;
/**
* The isTopAction property.
*/
@JsonProperty(value = "isTopAction", access = JsonProperty.Access.WRITE_ONLY)
private Boolean isTopAction;
/**
* The serviceUrl property.
*/
@JsonProperty(value = "serviceUrl", access = JsonProperty.Access.WRITE_ONLY)
private String serviceUrl;
/**
* Get the result value.
*
* @return the result value
*/
public List result() {
return this.result;
}
/**
* Get the displayName value.
*
* @return the displayName value
*/
public String displayName() {
return this.displayName;
}
/**
* Get the isTopAction value.
*
* @return the isTopAction value
*/
public Boolean isTopAction() {
return this.isTopAction;
}
/**
* Get the serviceUrl value.
*
* @return the serviceUrl value
*/
public String serviceUrl() {
return this.serviceUrl;
}
}