UNPKG

2.19 kBJavaScriptView Raw
1/*******************************************************************************
2 *
3 * Copyright 2018 Adobe. All rights reserved.
4 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License. You may obtain a copy
6 * of the License at http://www.apache.org/licenses/LICENSE-2.0
7 *
8 * Unless required by applicable law or agreed to in writing, software distributed under
9 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
10 * OF ANY KIND, either express or implied. See the License for the specific language
11 * governing permissions and limitations under the License.
12 *
13 ******************************************************************************/
14
15/**
16 * Auto generated code based on Swagger definition.
17 * Dot not edit manually. Manual changes will be overridden.
18 *
19 * @version 1.0.0
20 */
21
22class FacetValue {
23
24 /**
25 * Constructs a FacetValue based on its enclosed builder.
26 * @constructor
27 * @param {Builder} builder the FacetValue builder
28 */
29 constructor(builder) {
30 /**
31 * The id for this facet.
32 * @type {string}
33 */
34 this.id = builder.id;
35
36 /**
37 * The value for this facet.
38 * @type {object}
39 */
40 this.value = builder.value;
41
42 /**
43 * The number of facet value occurrences.
44 * @type {integer}
45 */
46 this.occurrences = undefined;
47
48 /**
49 * Indicates if the current facet value was selected.
50 * @type {boolean}
51 */
52 this.selected = undefined;
53
54 }
55
56 /**
57 * Builds a FacetValue based on API required properties.
58 */
59 static get Builder() {
60 class Builder {
61 withId(id) {
62 this.id = id;
63 return this;
64 }
65
66 withValue(value) {
67 this.value = value;
68 return this;
69 }
70
71 build() {
72 return new FacetValue(this);
73 }
74 }
75 return Builder;
76 }
77}
78module.exports.FacetValue = FacetValue;