-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_list_keywords_200_response_results_inner.go
410 lines (340 loc) · 12.1 KB
/
model_list_keywords_200_response_results_inner.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/*
OpenAlex API
An OpenAPI specification for the OpenAlex API
API version: 1.0.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package openapi
import (
"encoding/json"
"bytes"
"fmt"
)
// checks if the ListKeywords200ResponseResultsInner type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &ListKeywords200ResponseResultsInner{}
// ListKeywords200ResponseResultsInner struct for ListKeywords200ResponseResultsInner
type ListKeywords200ResponseResultsInner struct {
// The OpenAlex ID for this keyword.
Id string `json:"id"`
// The name of the keyword.
DisplayName string `json:"display_name"`
// The similarity score of the keyword to the work's title and abstract text. Higher scores indicate greater relevance.
Score *float32 `json:"score,omitempty"`
// The number of works in OpenAlex that have this keyword.
WorksCount *int32 `json:"works_count,omitempty"`
// An URL that will get you a list of all the works with this keyword.
WorksApiUrl *string `json:"works_api_url,omitempty"`
// The total number of citations received by all works with this keyword.
CitedByCount *int32 `json:"cited_by_count,omitempty"`
// The last time anything in this keyword object changed. Formatted as ISO 8601 extended format without time zone designator.
UpdatedDate *string `json:"updated_date,omitempty"`
// The date this keyword object was created in the OpenAlex dataset.
CreatedDate *string `json:"created_date,omitempty"`
}
type _ListKeywords200ResponseResultsInner ListKeywords200ResponseResultsInner
// NewListKeywords200ResponseResultsInner instantiates a new ListKeywords200ResponseResultsInner object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewListKeywords200ResponseResultsInner(id string, displayName string) *ListKeywords200ResponseResultsInner {
this := ListKeywords200ResponseResultsInner{}
this.Id = id
this.DisplayName = displayName
return &this
}
// NewListKeywords200ResponseResultsInnerWithDefaults instantiates a new ListKeywords200ResponseResultsInner object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewListKeywords200ResponseResultsInnerWithDefaults() *ListKeywords200ResponseResultsInner {
this := ListKeywords200ResponseResultsInner{}
return &this
}
// GetId returns the Id field value
func (o *ListKeywords200ResponseResultsInner) GetId() string {
if o == nil {
var ret string
return ret
}
return o.Id
}
// GetIdOk returns a tuple with the Id field value
// and a boolean to check if the value has been set.
func (o *ListKeywords200ResponseResultsInner) GetIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Id, true
}
// SetId sets field value
func (o *ListKeywords200ResponseResultsInner) SetId(v string) {
o.Id = v
}
// GetDisplayName returns the DisplayName field value
func (o *ListKeywords200ResponseResultsInner) GetDisplayName() string {
if o == nil {
var ret string
return ret
}
return o.DisplayName
}
// GetDisplayNameOk returns a tuple with the DisplayName field value
// and a boolean to check if the value has been set.
func (o *ListKeywords200ResponseResultsInner) GetDisplayNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.DisplayName, true
}
// SetDisplayName sets field value
func (o *ListKeywords200ResponseResultsInner) SetDisplayName(v string) {
o.DisplayName = v
}
// GetScore returns the Score field value if set, zero value otherwise.
func (o *ListKeywords200ResponseResultsInner) GetScore() float32 {
if o == nil || IsNil(o.Score) {
var ret float32
return ret
}
return *o.Score
}
// GetScoreOk returns a tuple with the Score field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ListKeywords200ResponseResultsInner) GetScoreOk() (*float32, bool) {
if o == nil || IsNil(o.Score) {
return nil, false
}
return o.Score, true
}
// HasScore returns a boolean if a field has been set.
func (o *ListKeywords200ResponseResultsInner) HasScore() bool {
if o != nil && !IsNil(o.Score) {
return true
}
return false
}
// SetScore gets a reference to the given float32 and assigns it to the Score field.
func (o *ListKeywords200ResponseResultsInner) SetScore(v float32) {
o.Score = &v
}
// GetWorksCount returns the WorksCount field value if set, zero value otherwise.
func (o *ListKeywords200ResponseResultsInner) GetWorksCount() int32 {
if o == nil || IsNil(o.WorksCount) {
var ret int32
return ret
}
return *o.WorksCount
}
// GetWorksCountOk returns a tuple with the WorksCount field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ListKeywords200ResponseResultsInner) GetWorksCountOk() (*int32, bool) {
if o == nil || IsNil(o.WorksCount) {
return nil, false
}
return o.WorksCount, true
}
// HasWorksCount returns a boolean if a field has been set.
func (o *ListKeywords200ResponseResultsInner) HasWorksCount() bool {
if o != nil && !IsNil(o.WorksCount) {
return true
}
return false
}
// SetWorksCount gets a reference to the given int32 and assigns it to the WorksCount field.
func (o *ListKeywords200ResponseResultsInner) SetWorksCount(v int32) {
o.WorksCount = &v
}
// GetWorksApiUrl returns the WorksApiUrl field value if set, zero value otherwise.
func (o *ListKeywords200ResponseResultsInner) GetWorksApiUrl() string {
if o == nil || IsNil(o.WorksApiUrl) {
var ret string
return ret
}
return *o.WorksApiUrl
}
// GetWorksApiUrlOk returns a tuple with the WorksApiUrl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ListKeywords200ResponseResultsInner) GetWorksApiUrlOk() (*string, bool) {
if o == nil || IsNil(o.WorksApiUrl) {
return nil, false
}
return o.WorksApiUrl, true
}
// HasWorksApiUrl returns a boolean if a field has been set.
func (o *ListKeywords200ResponseResultsInner) HasWorksApiUrl() bool {
if o != nil && !IsNil(o.WorksApiUrl) {
return true
}
return false
}
// SetWorksApiUrl gets a reference to the given string and assigns it to the WorksApiUrl field.
func (o *ListKeywords200ResponseResultsInner) SetWorksApiUrl(v string) {
o.WorksApiUrl = &v
}
// GetCitedByCount returns the CitedByCount field value if set, zero value otherwise.
func (o *ListKeywords200ResponseResultsInner) GetCitedByCount() int32 {
if o == nil || IsNil(o.CitedByCount) {
var ret int32
return ret
}
return *o.CitedByCount
}
// GetCitedByCountOk returns a tuple with the CitedByCount field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ListKeywords200ResponseResultsInner) GetCitedByCountOk() (*int32, bool) {
if o == nil || IsNil(o.CitedByCount) {
return nil, false
}
return o.CitedByCount, true
}
// HasCitedByCount returns a boolean if a field has been set.
func (o *ListKeywords200ResponseResultsInner) HasCitedByCount() bool {
if o != nil && !IsNil(o.CitedByCount) {
return true
}
return false
}
// SetCitedByCount gets a reference to the given int32 and assigns it to the CitedByCount field.
func (o *ListKeywords200ResponseResultsInner) SetCitedByCount(v int32) {
o.CitedByCount = &v
}
// GetUpdatedDate returns the UpdatedDate field value if set, zero value otherwise.
func (o *ListKeywords200ResponseResultsInner) GetUpdatedDate() string {
if o == nil || IsNil(o.UpdatedDate) {
var ret string
return ret
}
return *o.UpdatedDate
}
// GetUpdatedDateOk returns a tuple with the UpdatedDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ListKeywords200ResponseResultsInner) GetUpdatedDateOk() (*string, bool) {
if o == nil || IsNil(o.UpdatedDate) {
return nil, false
}
return o.UpdatedDate, true
}
// HasUpdatedDate returns a boolean if a field has been set.
func (o *ListKeywords200ResponseResultsInner) HasUpdatedDate() bool {
if o != nil && !IsNil(o.UpdatedDate) {
return true
}
return false
}
// SetUpdatedDate gets a reference to the given string and assigns it to the UpdatedDate field.
func (o *ListKeywords200ResponseResultsInner) SetUpdatedDate(v string) {
o.UpdatedDate = &v
}
// GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.
func (o *ListKeywords200ResponseResultsInner) GetCreatedDate() string {
if o == nil || IsNil(o.CreatedDate) {
var ret string
return ret
}
return *o.CreatedDate
}
// GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ListKeywords200ResponseResultsInner) GetCreatedDateOk() (*string, bool) {
if o == nil || IsNil(o.CreatedDate) {
return nil, false
}
return o.CreatedDate, true
}
// HasCreatedDate returns a boolean if a field has been set.
func (o *ListKeywords200ResponseResultsInner) HasCreatedDate() bool {
if o != nil && !IsNil(o.CreatedDate) {
return true
}
return false
}
// SetCreatedDate gets a reference to the given string and assigns it to the CreatedDate field.
func (o *ListKeywords200ResponseResultsInner) SetCreatedDate(v string) {
o.CreatedDate = &v
}
func (o ListKeywords200ResponseResultsInner) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o ListKeywords200ResponseResultsInner) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["id"] = o.Id
toSerialize["display_name"] = o.DisplayName
if !IsNil(o.Score) {
toSerialize["score"] = o.Score
}
if !IsNil(o.WorksCount) {
toSerialize["works_count"] = o.WorksCount
}
if !IsNil(o.WorksApiUrl) {
toSerialize["works_api_url"] = o.WorksApiUrl
}
if !IsNil(o.CitedByCount) {
toSerialize["cited_by_count"] = o.CitedByCount
}
if !IsNil(o.UpdatedDate) {
toSerialize["updated_date"] = o.UpdatedDate
}
if !IsNil(o.CreatedDate) {
toSerialize["created_date"] = o.CreatedDate
}
return toSerialize, nil
}
func (o *ListKeywords200ResponseResultsInner) UnmarshalJSON(data []byte) (err error) {
// This validates that all required properties are included in the JSON object
// by unmarshalling the object into a generic map with string keys and checking
// that every required field exists as a key in the generic map.
requiredProperties := []string{
"id",
"display_name",
}
allProperties := make(map[string]interface{})
err = json.Unmarshal(data, &allProperties)
if err != nil {
return err;
}
for _, requiredProperty := range(requiredProperties) {
if _, exists := allProperties[requiredProperty]; !exists {
return fmt.Errorf("no value given for required property %v", requiredProperty)
}
}
varListKeywords200ResponseResultsInner := _ListKeywords200ResponseResultsInner{}
decoder := json.NewDecoder(bytes.NewReader(data))
decoder.DisallowUnknownFields()
err = decoder.Decode(&varListKeywords200ResponseResultsInner)
if err != nil {
return err
}
*o = ListKeywords200ResponseResultsInner(varListKeywords200ResponseResultsInner)
return err
}
type NullableListKeywords200ResponseResultsInner struct {
value *ListKeywords200ResponseResultsInner
isSet bool
}
func (v NullableListKeywords200ResponseResultsInner) Get() *ListKeywords200ResponseResultsInner {
return v.value
}
func (v *NullableListKeywords200ResponseResultsInner) Set(val *ListKeywords200ResponseResultsInner) {
v.value = val
v.isSet = true
}
func (v NullableListKeywords200ResponseResultsInner) IsSet() bool {
return v.isSet
}
func (v *NullableListKeywords200ResponseResultsInner) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableListKeywords200ResponseResultsInner(val *ListKeywords200ResponseResultsInner) *NullableListKeywords200ResponseResultsInner {
return &NullableListKeywords200ResponseResultsInner{value: val, isSet: true}
}
func (v NullableListKeywords200ResponseResultsInner) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableListKeywords200ResponseResultsInner) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}