net.servicestack.client.AutoQueryViewer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
A client library to call your ServiceStack webservices.
The newest version!
// Copyright (c) 2013-present ServiceStack, Inc. All rights reserved.
// License: https://servicestack.net/bsd-license.txt
package net.servicestack.client;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface AutoQueryViewer {
public String Name() default "";
public String Title() default "";
public String Description() default "";
public String IconUrl() default "";
public String BrandUrl() default "";
public String BrandImageUrl() default "";
public String TextColor() default "";
public String LinkColor() default "";
public String BackgroundColor() default "";
public String BackgroundImageUrl() default "";
public String DefaultSearchField() default "";
public String DefaultSearchType() default "";
public String DefaultSearchText() default "";
public String DefaultFields() default "";
}