diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 8ac378c4..d926e413 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -36,6 +36,9 @@ docs/Descriptable.md docs/EntityFilter.md docs/Error.md docs/Experience.md +docs/ExperienceSkill.md +docs/ExperienceSkillAllOf.md +docs/ExperienceSkillGroup.md docs/Geolocation.md docs/Industry.md docs/IndustryApi.md @@ -143,6 +146,9 @@ model_descriptable.go model_entity_filter.go model_error.go model_experience.go +model_experience_skill.go +model_experience_skill_all_of.go +model_experience_skill_group.go model_geolocation.go model_industry.go model_industry_details.go diff --git a/README.md b/README.md index 82a71f33..1bfe82a4 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This is an example of using OAuth2 Implicit Flow in a specification to describe ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 1.3.16 +- API version: 1.3.17 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen @@ -242,6 +242,9 @@ Class | Method | HTTP request | Description - [EntityFilter](docs/EntityFilter.md) - [Error](docs/Error.md) - [Experience](docs/Experience.md) + - [ExperienceSkill](docs/ExperienceSkill.md) + - [ExperienceSkillAllOf](docs/ExperienceSkillAllOf.md) + - [ExperienceSkillGroup](docs/ExperienceSkillGroup.md) - [Geolocation](docs/Geolocation.md) - [Industry](docs/Industry.md) - [IndustryDetails](docs/IndustryDetails.md) diff --git a/api/openapi.yaml b/api/openapi.yaml index 0beef585..95fbafb5 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -3,7 +3,7 @@ info: description: This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. title: YASM (Yet Another Skill Management) API - version: 1.3.16 + version: 1.3.17 servers: - url: http://localhost:8080/api/v1 - url: https://dev-yasm.prodyna.com/api/v1 @@ -1329,6 +1329,7 @@ paths: - all - root - kind + - group example: all type: string style: form @@ -3862,7 +3863,7 @@ components: type: array skillGroups: items: - $ref: '#/components/schemas/SkillGroup' + $ref: '#/components/schemas/ExperienceSkillGroup' type: array objectType: type: string @@ -4158,6 +4159,10 @@ components: - ACTIVE - DONE type: string + ExperienceSkill: + allOf: + - $ref: '#/components/schemas/Skill' + - $ref: '#/components/schemas/ExperienceSkill_allOf' Skill: allOf: - $ref: '#/components/schemas/NamedDomainModel' @@ -4166,6 +4171,19 @@ components: - $ref: '#/components/schemas/Synonymable' - $ref: '#/components/schemas/Descriptable' - $ref: '#/components/schemas/Skill_allOf' + ExperienceSkillGroup: + example: + skills: + - null + - null + group: null + properties: + group: + $ref: '#/components/schemas/Skill' + skills: + items: + $ref: '#/components/schemas/ExperienceSkill' + type: array SkillGroup: example: skills: @@ -4559,6 +4577,13 @@ components: - project type: object example: null + ExperienceSkill_allOf: + properties: + experienceInMonth: + default: 0 + type: integer + type: object + example: null Skill_allOf: properties: invest: diff --git a/api_availability.go b/api_availability.go index 4755006d..cf6dca66 100644 --- a/api_availability.go +++ b/api_availability.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_certification.go b/api_certification.go index 79793c29..74720e30 100644 --- a/api_certification.go +++ b/api_certification.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_country.go b/api_country.go index a31611aa..e656797a 100644 --- a/api_country.go +++ b/api_country.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_industry.go b/api_industry.go index 60a142ea..841d14ed 100644 --- a/api_industry.go +++ b/api_industry.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_language.go b/api_language.go index d7582bd0..60298fc4 100644 --- a/api_language.go +++ b/api_language.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_office.go b/api_office.go index b3dfb22a..43a32cee 100644 --- a/api_office.go +++ b/api_office.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_organization.go b/api_organization.go index 283a0316..57734e49 100644 --- a/api_organization.go +++ b/api_organization.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_person.go b/api_person.go index 2b8ab8f9..20f34613 100644 --- a/api_person.go +++ b/api_person.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_project.go b/api_project.go index 4c5c1be5..1983e195 100644 --- a/api_project.go +++ b/api_project.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_search.go b/api_search.go index 2af095a7..e54c5d22 100644 --- a/api_search.go +++ b/api_search.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_skill.go b/api_skill.go index 560c0c4b..33605718 100644 --- a/api_skill.go +++ b/api_skill.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/api_status.go b/api_status.go index 6fedff39..4102618a 100644 --- a/api_status.go +++ b/api_status.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/client.go b/client.go index cfee3d40..09810562 100644 --- a/client.go +++ b/client.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( xmlCheck = regexp.MustCompile(`(?i:(?:application|text)/xml)`) ) -// APIClient manages communication with the YASM (Yet Another Skill Management) API API v1.3.16 +// APIClient manages communication with the YASM (Yet Another Skill Management) API API v1.3.17 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/configuration.go b/configuration.go index def8b9cb..77363638 100644 --- a/configuration.go +++ b/configuration.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/docs/ExperienceSkill.md b/docs/ExperienceSkill.md new file mode 100644 index 00000000..4d7cb637 --- /dev/null +++ b/docs/ExperienceSkill.md @@ -0,0 +1,56 @@ +# ExperienceSkill + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**ExperienceInMonth** | Pointer to **int32** | | [optional] [default to 0] + +## Methods + +### NewExperienceSkill + +`func NewExperienceSkill() *ExperienceSkill` + +NewExperienceSkill instantiates a new ExperienceSkill 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 + +### NewExperienceSkillWithDefaults + +`func NewExperienceSkillWithDefaults() *ExperienceSkill` + +NewExperienceSkillWithDefaults instantiates a new ExperienceSkill 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 + +### GetExperienceInMonth + +`func (o *ExperienceSkill) GetExperienceInMonth() int32` + +GetExperienceInMonth returns the ExperienceInMonth field if non-nil, zero value otherwise. + +### GetExperienceInMonthOk + +`func (o *ExperienceSkill) GetExperienceInMonthOk() (*int32, bool)` + +GetExperienceInMonthOk returns a tuple with the ExperienceInMonth field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetExperienceInMonth + +`func (o *ExperienceSkill) SetExperienceInMonth(v int32)` + +SetExperienceInMonth sets ExperienceInMonth field to given value. + +### HasExperienceInMonth + +`func (o *ExperienceSkill) HasExperienceInMonth() bool` + +HasExperienceInMonth returns a boolean if a field has been set. + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/ExperienceSkillAllOf.md b/docs/ExperienceSkillAllOf.md new file mode 100644 index 00000000..f2e1f4ff --- /dev/null +++ b/docs/ExperienceSkillAllOf.md @@ -0,0 +1,56 @@ +# ExperienceSkillAllOf + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**ExperienceInMonth** | Pointer to **int32** | | [optional] [default to 0] + +## Methods + +### NewExperienceSkillAllOf + +`func NewExperienceSkillAllOf() *ExperienceSkillAllOf` + +NewExperienceSkillAllOf instantiates a new ExperienceSkillAllOf 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 + +### NewExperienceSkillAllOfWithDefaults + +`func NewExperienceSkillAllOfWithDefaults() *ExperienceSkillAllOf` + +NewExperienceSkillAllOfWithDefaults instantiates a new ExperienceSkillAllOf 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 + +### GetExperienceInMonth + +`func (o *ExperienceSkillAllOf) GetExperienceInMonth() int32` + +GetExperienceInMonth returns the ExperienceInMonth field if non-nil, zero value otherwise. + +### GetExperienceInMonthOk + +`func (o *ExperienceSkillAllOf) GetExperienceInMonthOk() (*int32, bool)` + +GetExperienceInMonthOk returns a tuple with the ExperienceInMonth field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetExperienceInMonth + +`func (o *ExperienceSkillAllOf) SetExperienceInMonth(v int32)` + +SetExperienceInMonth sets ExperienceInMonth field to given value. + +### HasExperienceInMonth + +`func (o *ExperienceSkillAllOf) HasExperienceInMonth() bool` + +HasExperienceInMonth returns a boolean if a field has been set. + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/ExperienceSkillGroup.md b/docs/ExperienceSkillGroup.md new file mode 100644 index 00000000..c99def51 --- /dev/null +++ b/docs/ExperienceSkillGroup.md @@ -0,0 +1,82 @@ +# ExperienceSkillGroup + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Group** | Pointer to [**Skill**](Skill.md) | | [optional] +**Skills** | Pointer to [**[]ExperienceSkill**](ExperienceSkill.md) | | [optional] + +## Methods + +### NewExperienceSkillGroup + +`func NewExperienceSkillGroup() *ExperienceSkillGroup` + +NewExperienceSkillGroup instantiates a new ExperienceSkillGroup 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 + +### NewExperienceSkillGroupWithDefaults + +`func NewExperienceSkillGroupWithDefaults() *ExperienceSkillGroup` + +NewExperienceSkillGroupWithDefaults instantiates a new ExperienceSkillGroup 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 + +### GetGroup + +`func (o *ExperienceSkillGroup) GetGroup() Skill` + +GetGroup returns the Group field if non-nil, zero value otherwise. + +### GetGroupOk + +`func (o *ExperienceSkillGroup) GetGroupOk() (*Skill, bool)` + +GetGroupOk returns a tuple with the Group field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetGroup + +`func (o *ExperienceSkillGroup) SetGroup(v Skill)` + +SetGroup sets Group field to given value. + +### HasGroup + +`func (o *ExperienceSkillGroup) HasGroup() bool` + +HasGroup returns a boolean if a field has been set. + +### GetSkills + +`func (o *ExperienceSkillGroup) GetSkills() []ExperienceSkill` + +GetSkills returns the Skills field if non-nil, zero value otherwise. + +### GetSkillsOk + +`func (o *ExperienceSkillGroup) GetSkillsOk() (*[]ExperienceSkill, bool)` + +GetSkillsOk returns a tuple with the Skills field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetSkills + +`func (o *ExperienceSkillGroup) SetSkills(v []ExperienceSkill)` + +SetSkills sets Skills field to given value. + +### HasSkills + +`func (o *ExperienceSkillGroup) HasSkills() bool` + +HasSkills returns a boolean if a field has been set. + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/PersonDetails.md b/docs/PersonDetails.md index ea8dd5c9..a1eba54b 100644 --- a/docs/PersonDetails.md +++ b/docs/PersonDetails.md @@ -12,7 +12,7 @@ Name | Type | Description | Notes **Languages** | Pointer to [**[]LanguageLevel**](LanguageLevel.md) | | [optional] **Office** | Pointer to [**Office**](Office.md) | | [optional] **Availabilities** | Pointer to [**[]AvailabilityDetail**](AvailabilityDetail.md) | | [optional] -**SkillGroups** | Pointer to [**[]SkillGroup**](SkillGroup.md) | | [optional] +**SkillGroups** | Pointer to [**[]ExperienceSkillGroup**](ExperienceSkillGroup.md) | | [optional] **ObjectType** | Pointer to **string** | | [optional] ## Methods @@ -236,20 +236,20 @@ HasAvailabilities returns a boolean if a field has been set. ### GetSkillGroups -`func (o *PersonDetails) GetSkillGroups() []SkillGroup` +`func (o *PersonDetails) GetSkillGroups() []ExperienceSkillGroup` GetSkillGroups returns the SkillGroups field if non-nil, zero value otherwise. ### GetSkillGroupsOk -`func (o *PersonDetails) GetSkillGroupsOk() (*[]SkillGroup, bool)` +`func (o *PersonDetails) GetSkillGroupsOk() (*[]ExperienceSkillGroup, bool)` GetSkillGroupsOk returns a tuple with the SkillGroups field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSkillGroups -`func (o *PersonDetails) SetSkillGroups(v []SkillGroup)` +`func (o *PersonDetails) SetSkillGroups(v []ExperienceSkillGroup)` SetSkillGroups sets SkillGroups field to given value. diff --git a/model_abstract_entity_filter.go b/model_abstract_entity_filter.go index f8c00548..e2c11ea1 100644 --- a/model_abstract_entity_filter.go +++ b/model_abstract_entity_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_availability.go b/model_availability.go index 49736c4b..c46b0448 100644 --- a/model_availability.go +++ b/model_availability.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_availability_all_of.go b/model_availability_all_of.go index 3080b8c2..433c3155 100644 --- a/model_availability_all_of.go +++ b/model_availability_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_availability_detail.go b/model_availability_detail.go index d6b31def..b214e95f 100644 --- a/model_availability_detail.go +++ b/model_availability_detail.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_availability_filter.go b/model_availability_filter.go index 49fe8582..15a66e13 100644 --- a/model_availability_filter.go +++ b/model_availability_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_basic_domain_model.go b/model_basic_domain_model.go index 9fde44ee..4dc0b33d 100644 --- a/model_basic_domain_model.go +++ b/model_basic_domain_model.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_certification.go b/model_certification.go index 0c9b2e0c..bfff7610 100644 --- a/model_certification.go +++ b/model_certification.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_certification_all_of.go b/model_certification_all_of.go index 24a122e8..86f04def 100644 --- a/model_certification_all_of.go +++ b/model_certification_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_certification_details.go b/model_certification_details.go index 5a79d5a9..359e6f3d 100644 --- a/model_certification_details.go +++ b/model_certification_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_country.go b/model_country.go index 866b5c4a..0bf06a0f 100644 --- a/model_country.go +++ b/model_country.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_country_all_of.go b/model_country_all_of.go index 3f30caf6..d5fadd98 100644 --- a/model_country_all_of.go +++ b/model_country_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_country_details.go b/model_country_details.go index e647e849..4a7226f8 100644 --- a/model_country_details.go +++ b/model_country_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_descriptable.go b/model_descriptable.go index fa981a60..b11a0468 100644 --- a/model_descriptable.go +++ b/model_descriptable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_entity_filter.go b/model_entity_filter.go index 07ad0c3e..20fbcba3 100644 --- a/model_entity_filter.go +++ b/model_entity_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_error.go b/model_error.go index 4ca7d509..c20337cf 100644 --- a/model_error.go +++ b/model_error.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_experience.go b/model_experience.go index 4bad27c2..f261dc6b 100644 --- a/model_experience.go +++ b/model_experience.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_experience_skill.go b/model_experience_skill.go new file mode 100644 index 00000000..f2f4adb4 --- /dev/null +++ b/model_experience_skill.go @@ -0,0 +1,137 @@ +/* +YASM (Yet Another Skill Management) API + +This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. + +API version: 1.3.17 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package client + +import ( + "encoding/json" +) + +// ExperienceSkill struct for ExperienceSkill +type ExperienceSkill struct { + Skill + ExperienceInMonth *int32 `json:"experienceInMonth,omitempty"` +} + +// NewExperienceSkill instantiates a new ExperienceSkill 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 NewExperienceSkill(id string, name string, suggestion bool) *ExperienceSkill { + this := ExperienceSkill{} + this.Id = id + this.Name = name + this.Suggestion = suggestion + var linkable bool = false + this.Linkable = &linkable + var invest bool = false + this.Invest = &invest + var kindgiver bool = false + this.Kindgiver = &kindgiver + var experienceInMonth int32 = 0 + this.ExperienceInMonth = &experienceInMonth + return &this +} + +// NewExperienceSkillWithDefaults instantiates a new ExperienceSkill 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 NewExperienceSkillWithDefaults() *ExperienceSkill { + this := ExperienceSkill{} + var experienceInMonth int32 = 0 + this.ExperienceInMonth = &experienceInMonth + return &this +} + +// GetExperienceInMonth returns the ExperienceInMonth field value if set, zero value otherwise. +func (o *ExperienceSkill) GetExperienceInMonth() int32 { + if o == nil || o.ExperienceInMonth == nil { + var ret int32 + return ret + } + return *o.ExperienceInMonth +} + +// GetExperienceInMonthOk returns a tuple with the ExperienceInMonth field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ExperienceSkill) GetExperienceInMonthOk() (*int32, bool) { + if o == nil || o.ExperienceInMonth == nil { + return nil, false + } + return o.ExperienceInMonth, true +} + +// HasExperienceInMonth returns a boolean if a field has been set. +func (o *ExperienceSkill) HasExperienceInMonth() bool { + if o != nil && o.ExperienceInMonth != nil { + return true + } + + return false +} + +// SetExperienceInMonth gets a reference to the given int32 and assigns it to the ExperienceInMonth field. +func (o *ExperienceSkill) SetExperienceInMonth(v int32) { + o.ExperienceInMonth = &v +} + +func (o ExperienceSkill) MarshalJSON() ([]byte, error) { + toSerialize := map[string]interface{}{} + serializedSkill, errSkill := json.Marshal(o.Skill) + if errSkill != nil { + return []byte{}, errSkill + } + errSkill = json.Unmarshal([]byte(serializedSkill), &toSerialize) + if errSkill != nil { + return []byte{}, errSkill + } + if o.ExperienceInMonth != nil { + toSerialize["experienceInMonth"] = o.ExperienceInMonth + } + return json.Marshal(toSerialize) +} + +type NullableExperienceSkill struct { + value *ExperienceSkill + isSet bool +} + +func (v NullableExperienceSkill) Get() *ExperienceSkill { + return v.value +} + +func (v *NullableExperienceSkill) Set(val *ExperienceSkill) { + v.value = val + v.isSet = true +} + +func (v NullableExperienceSkill) IsSet() bool { + return v.isSet +} + +func (v *NullableExperienceSkill) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableExperienceSkill(val *ExperienceSkill) *NullableExperienceSkill { + return &NullableExperienceSkill{value: val, isSet: true} +} + +func (v NullableExperienceSkill) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableExperienceSkill) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} + + diff --git a/model_experience_skill_all_of.go b/model_experience_skill_all_of.go new file mode 100644 index 00000000..198eba52 --- /dev/null +++ b/model_experience_skill_all_of.go @@ -0,0 +1,119 @@ +/* +YASM (Yet Another Skill Management) API + +This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. + +API version: 1.3.17 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package client + +import ( + "encoding/json" +) + +// ExperienceSkillAllOf struct for ExperienceSkillAllOf +type ExperienceSkillAllOf struct { + ExperienceInMonth *int32 `json:"experienceInMonth,omitempty"` +} + +// NewExperienceSkillAllOf instantiates a new ExperienceSkillAllOf 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 NewExperienceSkillAllOf() *ExperienceSkillAllOf { + this := ExperienceSkillAllOf{} + var experienceInMonth int32 = 0 + this.ExperienceInMonth = &experienceInMonth + return &this +} + +// NewExperienceSkillAllOfWithDefaults instantiates a new ExperienceSkillAllOf 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 NewExperienceSkillAllOfWithDefaults() *ExperienceSkillAllOf { + this := ExperienceSkillAllOf{} + var experienceInMonth int32 = 0 + this.ExperienceInMonth = &experienceInMonth + return &this +} + +// GetExperienceInMonth returns the ExperienceInMonth field value if set, zero value otherwise. +func (o *ExperienceSkillAllOf) GetExperienceInMonth() int32 { + if o == nil || o.ExperienceInMonth == nil { + var ret int32 + return ret + } + return *o.ExperienceInMonth +} + +// GetExperienceInMonthOk returns a tuple with the ExperienceInMonth field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ExperienceSkillAllOf) GetExperienceInMonthOk() (*int32, bool) { + if o == nil || o.ExperienceInMonth == nil { + return nil, false + } + return o.ExperienceInMonth, true +} + +// HasExperienceInMonth returns a boolean if a field has been set. +func (o *ExperienceSkillAllOf) HasExperienceInMonth() bool { + if o != nil && o.ExperienceInMonth != nil { + return true + } + + return false +} + +// SetExperienceInMonth gets a reference to the given int32 and assigns it to the ExperienceInMonth field. +func (o *ExperienceSkillAllOf) SetExperienceInMonth(v int32) { + o.ExperienceInMonth = &v +} + +func (o ExperienceSkillAllOf) MarshalJSON() ([]byte, error) { + toSerialize := map[string]interface{}{} + if o.ExperienceInMonth != nil { + toSerialize["experienceInMonth"] = o.ExperienceInMonth + } + return json.Marshal(toSerialize) +} + +type NullableExperienceSkillAllOf struct { + value *ExperienceSkillAllOf + isSet bool +} + +func (v NullableExperienceSkillAllOf) Get() *ExperienceSkillAllOf { + return v.value +} + +func (v *NullableExperienceSkillAllOf) Set(val *ExperienceSkillAllOf) { + v.value = val + v.isSet = true +} + +func (v NullableExperienceSkillAllOf) IsSet() bool { + return v.isSet +} + +func (v *NullableExperienceSkillAllOf) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableExperienceSkillAllOf(val *ExperienceSkillAllOf) *NullableExperienceSkillAllOf { + return &NullableExperienceSkillAllOf{value: val, isSet: true} +} + +func (v NullableExperienceSkillAllOf) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableExperienceSkillAllOf) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} + + diff --git a/model_experience_skill_group.go b/model_experience_skill_group.go new file mode 100644 index 00000000..84cb747e --- /dev/null +++ b/model_experience_skill_group.go @@ -0,0 +1,151 @@ +/* +YASM (Yet Another Skill Management) API + +This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. + +API version: 1.3.17 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package client + +import ( + "encoding/json" +) + +// ExperienceSkillGroup struct for ExperienceSkillGroup +type ExperienceSkillGroup struct { + Group *Skill `json:"group,omitempty"` + Skills []ExperienceSkill `json:"skills,omitempty"` +} + +// NewExperienceSkillGroup instantiates a new ExperienceSkillGroup 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 NewExperienceSkillGroup() *ExperienceSkillGroup { + this := ExperienceSkillGroup{} + return &this +} + +// NewExperienceSkillGroupWithDefaults instantiates a new ExperienceSkillGroup 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 NewExperienceSkillGroupWithDefaults() *ExperienceSkillGroup { + this := ExperienceSkillGroup{} + return &this +} + +// GetGroup returns the Group field value if set, zero value otherwise. +func (o *ExperienceSkillGroup) GetGroup() Skill { + if o == nil || o.Group == nil { + var ret Skill + return ret + } + return *o.Group +} + +// GetGroupOk returns a tuple with the Group field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ExperienceSkillGroup) GetGroupOk() (*Skill, bool) { + if o == nil || o.Group == nil { + return nil, false + } + return o.Group, true +} + +// HasGroup returns a boolean if a field has been set. +func (o *ExperienceSkillGroup) HasGroup() bool { + if o != nil && o.Group != nil { + return true + } + + return false +} + +// SetGroup gets a reference to the given Skill and assigns it to the Group field. +func (o *ExperienceSkillGroup) SetGroup(v Skill) { + o.Group = &v +} + +// GetSkills returns the Skills field value if set, zero value otherwise. +func (o *ExperienceSkillGroup) GetSkills() []ExperienceSkill { + if o == nil || o.Skills == nil { + var ret []ExperienceSkill + return ret + } + return o.Skills +} + +// GetSkillsOk returns a tuple with the Skills field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ExperienceSkillGroup) GetSkillsOk() ([]ExperienceSkill, bool) { + if o == nil || o.Skills == nil { + return nil, false + } + return o.Skills, true +} + +// HasSkills returns a boolean if a field has been set. +func (o *ExperienceSkillGroup) HasSkills() bool { + if o != nil && o.Skills != nil { + return true + } + + return false +} + +// SetSkills gets a reference to the given []ExperienceSkill and assigns it to the Skills field. +func (o *ExperienceSkillGroup) SetSkills(v []ExperienceSkill) { + o.Skills = v +} + +func (o ExperienceSkillGroup) MarshalJSON() ([]byte, error) { + toSerialize := map[string]interface{}{} + if o.Group != nil { + toSerialize["group"] = o.Group + } + if o.Skills != nil { + toSerialize["skills"] = o.Skills + } + return json.Marshal(toSerialize) +} + +type NullableExperienceSkillGroup struct { + value *ExperienceSkillGroup + isSet bool +} + +func (v NullableExperienceSkillGroup) Get() *ExperienceSkillGroup { + return v.value +} + +func (v *NullableExperienceSkillGroup) Set(val *ExperienceSkillGroup) { + v.value = val + v.isSet = true +} + +func (v NullableExperienceSkillGroup) IsSet() bool { + return v.isSet +} + +func (v *NullableExperienceSkillGroup) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableExperienceSkillGroup(val *ExperienceSkillGroup) *NullableExperienceSkillGroup { + return &NullableExperienceSkillGroup{value: val, isSet: true} +} + +func (v NullableExperienceSkillGroup) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableExperienceSkillGroup) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} + + diff --git a/model_geolocation.go b/model_geolocation.go index 53204902..0ebfc9fa 100644 --- a/model_geolocation.go +++ b/model_geolocation.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_industry.go b/model_industry.go index bca476d3..2dcf3304 100644 --- a/model_industry.go +++ b/model_industry.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_industry_details.go b/model_industry_details.go index fd6502d9..b83f0e22 100644 --- a/model_industry_details.go +++ b/model_industry_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_language.go b/model_language.go index c8c8ac22..3e02e464 100644 --- a/model_language.go +++ b/model_language.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_language_details.go b/model_language_details.go index b5af81eb..a66722e1 100644 --- a/model_language_details.go +++ b/model_language_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_language_level.go b/model_language_level.go index a1f2d408..0ce040ae 100644 --- a/model_language_level.go +++ b/model_language_level.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_level.go b/model_level.go index 4443753a..1f150d4e 100644 --- a/model_level.go +++ b/model_level.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_linkable.go b/model_linkable.go index 02209ca4..82e9ee23 100644 --- a/model_linkable.go +++ b/model_linkable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_locateable.go b/model_locateable.go index c903c381..e1d38418 100644 --- a/model_locateable.go +++ b/model_locateable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_min_max.go b/model_min_max.go index afe15a3f..34b2fd6e 100644 --- a/model_min_max.go +++ b/model_min_max.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_min_max_percent.go b/model_min_max_percent.go index 5c4cea46..3de57ec3 100644 --- a/model_min_max_percent.go +++ b/model_min_max_percent.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_nameable.go b/model_nameable.go index f6f951ce..aabb0456 100644 --- a/model_nameable.go +++ b/model_nameable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_named_domain_model.go b/model_named_domain_model.go index d7f17e3e..1aedd2ca 100644 --- a/model_named_domain_model.go +++ b/model_named_domain_model.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_office.go b/model_office.go index 473824f7..fb59e699 100644 --- a/model_office.go +++ b/model_office.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_organization.go b/model_organization.go index 50e3efd8..f835131d 100644 --- a/model_organization.go +++ b/model_organization.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_organization_all_of.go b/model_organization_all_of.go index 87f778ec..995204b8 100644 --- a/model_organization_all_of.go +++ b/model_organization_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_organization_details.go b/model_organization_details.go index 8816c9bb..0006fbfc 100644 --- a/model_organization_details.go +++ b/model_organization_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_page.go b/model_page.go index c3c95d0a..74c0bf3f 100644 --- a/model_page.go +++ b/model_page.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_availabilities.go b/model_paged_availabilities.go index 25513a4e..b532c43b 100644 --- a/model_paged_availabilities.go +++ b/model_paged_availabilities.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_availabilities_all_of.go b/model_paged_availabilities_all_of.go index 51435cf5..fddd4a4f 100644 --- a/model_paged_availabilities_all_of.go +++ b/model_paged_availabilities_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_certifications.go b/model_paged_certifications.go index 2ee13f78..e352cc33 100644 --- a/model_paged_certifications.go +++ b/model_paged_certifications.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_certifications_all_of.go b/model_paged_certifications_all_of.go index bd03b882..316aed78 100644 --- a/model_paged_certifications_all_of.go +++ b/model_paged_certifications_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_countries.go b/model_paged_countries.go index b7d1aef2..553ecdc6 100644 --- a/model_paged_countries.go +++ b/model_paged_countries.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_countries_all_of.go b/model_paged_countries_all_of.go index e17fccd7..c868ac7c 100644 --- a/model_paged_countries_all_of.go +++ b/model_paged_countries_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_industries.go b/model_paged_industries.go index 50feefbc..c432084b 100644 --- a/model_paged_industries.go +++ b/model_paged_industries.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_industries_all_of.go b/model_paged_industries_all_of.go index 79b9dd54..0a12adb1 100644 --- a/model_paged_industries_all_of.go +++ b/model_paged_industries_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_languages.go b/model_paged_languages.go index 62031cce..b3400dc1 100644 --- a/model_paged_languages.go +++ b/model_paged_languages.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_languages_all_of.go b/model_paged_languages_all_of.go index 342da067..ad2b8733 100644 --- a/model_paged_languages_all_of.go +++ b/model_paged_languages_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_organizations.go b/model_paged_organizations.go index 3f90213a..14fee805 100644 --- a/model_paged_organizations.go +++ b/model_paged_organizations.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_organizations_all_of.go b/model_paged_organizations_all_of.go index c2df0503..de337822 100644 --- a/model_paged_organizations_all_of.go +++ b/model_paged_organizations_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_persons.go b/model_paged_persons.go index ed4d3c0d..dd5da672 100644 --- a/model_paged_persons.go +++ b/model_paged_persons.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_persons_all_of.go b/model_paged_persons_all_of.go index 4bba8ead..0c3f4690 100644 --- a/model_paged_persons_all_of.go +++ b/model_paged_persons_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_project_participations.go b/model_paged_project_participations.go index 5691c27c..9c01ae68 100644 --- a/model_paged_project_participations.go +++ b/model_paged_project_participations.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_project_participations_all_of.go b/model_paged_project_participations_all_of.go index b649d65d..80e9eca4 100644 --- a/model_paged_project_participations_all_of.go +++ b/model_paged_project_participations_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_projects.go b/model_paged_projects.go index 2b31d806..0efff995 100644 --- a/model_paged_projects.go +++ b/model_paged_projects.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_projects_all_of.go b/model_paged_projects_all_of.go index 28169ff6..714830e4 100644 --- a/model_paged_projects_all_of.go +++ b/model_paged_projects_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_skills.go b/model_paged_skills.go index c64687c4..528c1929 100644 --- a/model_paged_skills.go +++ b/model_paged_skills.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_paged_skills_all_of.go b/model_paged_skills_all_of.go index af55e512..4abacbbb 100644 --- a/model_paged_skills_all_of.go +++ b/model_paged_skills_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person.go b/model_person.go index 6ed524a5..898db8f0 100644 --- a/model_person.go +++ b/model_person.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_all_of.go b/model_person_all_of.go index 4174a969..72e158d5 100644 --- a/model_person_all_of.go +++ b/model_person_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_certification_filter.go b/model_person_certification_filter.go index 6704f92d..c18dbcbf 100644 --- a/model_person_certification_filter.go +++ b/model_person_certification_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_certification_filter_all_of.go b/model_person_certification_filter_all_of.go index 0fa0b2a1..68d5fc0e 100644 --- a/model_person_certification_filter_all_of.go +++ b/model_person_certification_filter_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_details.go b/model_person_details.go index abd6ba00..7e6f6a32 100644 --- a/model_person_details.go +++ b/model_person_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -24,7 +24,7 @@ type PersonDetails struct { Languages []LanguageLevel `json:"languages,omitempty"` Office *Office `json:"office,omitempty"` Availabilities []AvailabilityDetail `json:"availabilities,omitempty"` - SkillGroups []SkillGroup `json:"skillGroups,omitempty"` + SkillGroups []ExperienceSkillGroup `json:"skillGroups,omitempty"` ObjectType *string `json:"objectType,omitempty"` } @@ -302,9 +302,9 @@ func (o *PersonDetails) SetAvailabilities(v []AvailabilityDetail) { } // GetSkillGroups returns the SkillGroups field value if set, zero value otherwise. -func (o *PersonDetails) GetSkillGroups() []SkillGroup { +func (o *PersonDetails) GetSkillGroups() []ExperienceSkillGroup { if o == nil || o.SkillGroups == nil { - var ret []SkillGroup + var ret []ExperienceSkillGroup return ret } return o.SkillGroups @@ -312,7 +312,7 @@ func (o *PersonDetails) GetSkillGroups() []SkillGroup { // GetSkillGroupsOk returns a tuple with the SkillGroups field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *PersonDetails) GetSkillGroupsOk() ([]SkillGroup, bool) { +func (o *PersonDetails) GetSkillGroupsOk() ([]ExperienceSkillGroup, bool) { if o == nil || o.SkillGroups == nil { return nil, false } @@ -328,8 +328,8 @@ func (o *PersonDetails) HasSkillGroups() bool { return false } -// SetSkillGroups gets a reference to the given []SkillGroup and assigns it to the SkillGroups field. -func (o *PersonDetails) SetSkillGroups(v []SkillGroup) { +// SetSkillGroups gets a reference to the given []ExperienceSkillGroup and assigns it to the SkillGroups field. +func (o *PersonDetails) SetSkillGroups(v []ExperienceSkillGroup) { o.SkillGroups = v } diff --git a/model_person_industry_filter.go b/model_person_industry_filter.go index 99b0987f..47ec933d 100644 --- a/model_person_industry_filter.go +++ b/model_person_industry_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_industry_filter_all_of.go b/model_person_industry_filter_all_of.go index fdb5f0c4..c5b8cb04 100644 --- a/model_person_industry_filter_all_of.go +++ b/model_person_industry_filter_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_organization_filter.go b/model_person_organization_filter.go index d78715cf..a90b2e64 100644 --- a/model_person_organization_filter.go +++ b/model_person_organization_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_organization_filter_all_of.go b/model_person_organization_filter_all_of.go index 9992a014..caa7316b 100644 --- a/model_person_organization_filter_all_of.go +++ b/model_person_organization_filter_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_project_filter.go b/model_person_project_filter.go index 9dc09a8f..4c73381f 100644 --- a/model_person_project_filter.go +++ b/model_person_project_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_project_filter_all_of.go b/model_person_project_filter_all_of.go index 8b3ee080..e323782c 100644 --- a/model_person_project_filter_all_of.go +++ b/model_person_project_filter_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_score_detail.go b/model_person_score_detail.go index b99dac85..172026dc 100644 --- a/model_person_score_detail.go +++ b/model_person_score_detail.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_search.go b/model_person_search.go index 93681332..e207f2f4 100644 --- a/model_person_search.go +++ b/model_person_search.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_skill_filter.go b/model_person_skill_filter.go index 4b05cff8..719b3709 100644 --- a/model_person_skill_filter.go +++ b/model_person_skill_filter.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_person_skill_filter_all_of.go b/model_person_skill_filter_all_of.go index c7fd086c..e1e29a12 100644 --- a/model_person_skill_filter_all_of.go +++ b/model_person_skill_filter_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project.go b/model_project.go index 3528ed39..7eeb4bdb 100644 --- a/model_project.go +++ b/model_project.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_all_of.go b/model_project_all_of.go index 81b4493a..b3a9f2ac 100644 --- a/model_project_all_of.go +++ b/model_project_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_details.go b/model_project_details.go index 1c26fe82..63707227 100644 --- a/model_project_details.go +++ b/model_project_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_participation.go b/model_project_participation.go index 51ae908a..c70510ca 100644 --- a/model_project_participation.go +++ b/model_project_participation.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_participation_all_of.go b/model_project_participation_all_of.go index 10303cd2..b56460eb 100644 --- a/model_project_participation_all_of.go +++ b/model_project_participation_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_participation_search.go b/model_project_participation_search.go index d3c87ca0..94ea55c6 100644 --- a/model_project_participation_search.go +++ b/model_project_participation_search.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_participation_update.go b/model_project_participation_update.go index 9b3d3309..23b57fd8 100644 --- a/model_project_participation_update.go +++ b/model_project_participation_update.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_score_detail.go b/model_project_score_detail.go index 6e39ac96..da1e7f48 100644 --- a/model_project_score_detail.go +++ b/model_project_score_detail.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_score_detail_all_of.go b/model_project_score_detail_all_of.go index aa4cbe6e..080f9ee0 100644 --- a/model_project_score_detail_all_of.go +++ b/model_project_score_detail_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_search.go b/model_project_search.go index 52fa4cd6..d92f2b5d 100644 --- a/model_project_search.go +++ b/model_project_search.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_project_status.go b/model_project_status.go index 4415e0d2..0fb8ce41 100644 --- a/model_project_status.go +++ b/model_project_status.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_search_result.go b/model_search_result.go index 933a9c6d..6b50f98c 100644 --- a/model_search_result.go +++ b/model_search_result.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_search_result_all_of.go b/model_search_result_all_of.go index 83403e3e..5f642824 100644 --- a/model_search_result_all_of.go +++ b/model_search_result_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_search_result_item.go b/model_search_result_item.go index 89ace0da..a125aafc 100644 --- a/model_search_result_item.go +++ b/model_search_result_item.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_seniority.go b/model_seniority.go index 815360e3..0efe3a20 100644 --- a/model_seniority.go +++ b/model_seniority.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill.go b/model_skill.go index 53f826b1..ab27ea4f 100644 --- a/model_skill.go +++ b/model_skill.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill_all_of.go b/model_skill_all_of.go index c1072644..c9f69244 100644 --- a/model_skill_all_of.go +++ b/model_skill_all_of.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill_details.go b/model_skill_details.go index 3a82ae75..0ce8fe23 100644 --- a/model_skill_details.go +++ b/model_skill_details.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill_group.go b/model_skill_group.go index ced535a8..ca337f35 100644 --- a/model_skill_group.go +++ b/model_skill_group.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill_level.go b/model_skill_level.go index d49cc797..1a89dfa0 100644 --- a/model_skill_level.go +++ b/model_skill_level.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_skill_level_update.go b/model_skill_level_update.go index 0cdbfb16..deced667 100644 --- a/model_skill_level_update.go +++ b/model_skill_level_update.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_status.go b/model_status.go index 03c579a0..1e151b8c 100644 --- a/model_status.go +++ b/model_status.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_suggestable.go b/model_suggestable.go index d10ecbb8..dee3b096 100644 --- a/model_suggestable.go +++ b/model_suggestable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_synonymable.go b/model_synonymable.go index e70f421c..289500a7 100644 --- a/model_synonymable.go +++ b/model_synonymable.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_timeframed.go b/model_timeframed.go index 5077ce50..7038476b 100644 --- a/model_timeframed.go +++ b/model_timeframed.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/model_version.go b/model_version.go index b3f155a2..97b92382 100644 --- a/model_version.go +++ b/model_version.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/response.go b/response.go index 7d2f13bc..a6e544ed 100644 --- a/response.go +++ b/response.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/utils.go b/utils.go index 0f20247c..96ccfce8 100644 --- a/utils.go +++ b/utils.go @@ -3,7 +3,7 @@ YASM (Yet Another Skill Management) API This is an example of using OAuth2 Implicit Flow in a specification to describe security to your API. -API version: 1.3.16 +API version: 1.3.17 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.