/* tslint:disable */ /* eslint-disable */ /** * General Research Full Service Brokerage API * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 1.1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { DurationSummary } from './duration-summary'; import { PayoutSummary } from './payout-summary'; /** * * * @export * @interface TopNPlusBucket */ export interface TopNPlusBucket { /** * Unique identifier this particular bucket * * @type {any} * @memberof TopNPlusBucket */ id: any; /** * The URL to send a respondent into. Must not edit this URL in any way * * @type {any} * @memberof TopNPlusBucket */ uri: any; /** * For UI. Provides a dimensionality position for the bucket on the x-axis. * * @type {any} * @memberof TopNPlusBucket */ x?: any; /** * For UI. Provides a dimensionality position for the bucket on the y-axis. * * @type {any} * @memberof TopNPlusBucket */ y?: any; /** * Currently unused. Will always return empty string * * @type {any} * @memberof TopNPlusBucket */ name?: any; /** * Currently unused. Will always return empty string * * @type {any} * @memberof TopNPlusBucket */ description?: any; /** * @type {any} * @memberof TopNPlusBucket */ category?: any; /** * @type {any} * @memberof TopNPlusBucket */ contents: any; /** * @type {DurationSummary} * @memberof TopNPlusBucket */ duration: DurationSummary; /** * @type {PayoutSummary} * @memberof TopNPlusBucket */ payout: PayoutSummary; /** * @type {any} * @memberof TopNPlusBucket */ qualityScore: any; /** * This will always be 'USD' * * @type {any} * @memberof TopNPlusBucket */ currency?: any; }