empty method and model folders for go to start fixing build

This commit is contained in:
darrell-thobe-sp
2025-03-31 09:09:43 -04:00
parent 34d14a520e
commit 1b874a5285
2759 changed files with 2 additions and 516357 deletions

View File

@@ -1,116 +0,0 @@
---
id: v2024-feature-value-dto
title: FeatureValueDto
pagination_label: FeatureValueDto
sidebar_label: FeatureValueDto
sidebar_class_name: gosdk
keywords: ['go', 'Golang', 'sdk', 'FeatureValueDto', 'V2024FeatureValueDto']
slug: /tools/sdk/go/v2024/models/feature-value-dto
tags: ['SDK', 'Software Development Kit', 'FeatureValueDto', 'V2024FeatureValueDto']
---
# FeatureValueDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Feature** | Pointer to **string** | The type of feature | [optional]
**Numerator** | Pointer to **int32** | The number of identities that have access to the feature | [optional]
**Denominator** | Pointer to **int32** | The number of identities with the corresponding feature | [optional]
## Methods
### NewFeatureValueDto
`func NewFeatureValueDto() *FeatureValueDto`
NewFeatureValueDto instantiates a new FeatureValueDto 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
### NewFeatureValueDtoWithDefaults
`func NewFeatureValueDtoWithDefaults() *FeatureValueDto`
NewFeatureValueDtoWithDefaults instantiates a new FeatureValueDto 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
### GetFeature
`func (o *FeatureValueDto) GetFeature() string`
GetFeature returns the Feature field if non-nil, zero value otherwise.
### GetFeatureOk
`func (o *FeatureValueDto) GetFeatureOk() (*string, bool)`
GetFeatureOk returns a tuple with the Feature field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFeature
`func (o *FeatureValueDto) SetFeature(v string)`
SetFeature sets Feature field to given value.
### HasFeature
`func (o *FeatureValueDto) HasFeature() bool`
HasFeature returns a boolean if a field has been set.
### GetNumerator
`func (o *FeatureValueDto) GetNumerator() int32`
GetNumerator returns the Numerator field if non-nil, zero value otherwise.
### GetNumeratorOk
`func (o *FeatureValueDto) GetNumeratorOk() (*int32, bool)`
GetNumeratorOk returns a tuple with the Numerator field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetNumerator
`func (o *FeatureValueDto) SetNumerator(v int32)`
SetNumerator sets Numerator field to given value.
### HasNumerator
`func (o *FeatureValueDto) HasNumerator() bool`
HasNumerator returns a boolean if a field has been set.
### GetDenominator
`func (o *FeatureValueDto) GetDenominator() int32`
GetDenominator returns the Denominator field if non-nil, zero value otherwise.
### GetDenominatorOk
`func (o *FeatureValueDto) GetDenominatorOk() (*int32, bool)`
GetDenominatorOk returns a tuple with the Denominator field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDenominator
`func (o *FeatureValueDto) SetDenominator(v int32)`
SetDenominator sets Denominator field to given value.
### HasDenominator
`func (o *FeatureValueDto) HasDenominator() bool`
HasDenominator returns a boolean if a field has been set.