Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.91 KB

RecommendationConfigDto.md

File metadata and controls

108 lines (59 loc) · 3.91 KB

RecommendationConfigDto

Properties

Name Type Description Notes
RecommenderFeatures Pointer to []string List of identity attributes to use for calculating certification recommendations [optional]
PeerGroupPercentageThreshold Pointer to float32 The percent value that the recommendation calculation must surpass to produce a YES recommendation [optional]
ForceRefresh Pointer to bool If true, rulesRecommenderConfig will be refreshed with new programatically selected attribute and threshold values on the next pipeline run [optional]

Methods

NewRecommendationConfigDto

func NewRecommendationConfigDto() *RecommendationConfigDto

NewRecommendationConfigDto instantiates a new RecommendationConfigDto 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

NewRecommendationConfigDtoWithDefaults

func NewRecommendationConfigDtoWithDefaults() *RecommendationConfigDto

NewRecommendationConfigDtoWithDefaults instantiates a new RecommendationConfigDto 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

GetRecommenderFeatures

func (o *RecommendationConfigDto) GetRecommenderFeatures() []string

GetRecommenderFeatures returns the RecommenderFeatures field if non-nil, zero value otherwise.

GetRecommenderFeaturesOk

func (o *RecommendationConfigDto) GetRecommenderFeaturesOk() (*[]string, bool)

GetRecommenderFeaturesOk returns a tuple with the RecommenderFeatures field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetRecommenderFeatures

func (o *RecommendationConfigDto) SetRecommenderFeatures(v []string)

SetRecommenderFeatures sets RecommenderFeatures field to given value.

HasRecommenderFeatures

func (o *RecommendationConfigDto) HasRecommenderFeatures() bool

HasRecommenderFeatures returns a boolean if a field has been set.

GetPeerGroupPercentageThreshold

func (o *RecommendationConfigDto) GetPeerGroupPercentageThreshold() float32

GetPeerGroupPercentageThreshold returns the PeerGroupPercentageThreshold field if non-nil, zero value otherwise.

GetPeerGroupPercentageThresholdOk

func (o *RecommendationConfigDto) GetPeerGroupPercentageThresholdOk() (*float32, bool)

GetPeerGroupPercentageThresholdOk returns a tuple with the PeerGroupPercentageThreshold field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPeerGroupPercentageThreshold

func (o *RecommendationConfigDto) SetPeerGroupPercentageThreshold(v float32)

SetPeerGroupPercentageThreshold sets PeerGroupPercentageThreshold field to given value.

HasPeerGroupPercentageThreshold

func (o *RecommendationConfigDto) HasPeerGroupPercentageThreshold() bool

HasPeerGroupPercentageThreshold returns a boolean if a field has been set.

GetForceRefresh

func (o *RecommendationConfigDto) GetForceRefresh() bool

GetForceRefresh returns the ForceRefresh field if non-nil, zero value otherwise.

GetForceRefreshOk

func (o *RecommendationConfigDto) GetForceRefreshOk() (*bool, bool)

GetForceRefreshOk returns a tuple with the ForceRefresh field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetForceRefresh

func (o *RecommendationConfigDto) SetForceRefresh(v bool)

SetForceRefresh sets ForceRefresh field to given value.

HasForceRefresh

func (o *RecommendationConfigDto) HasForceRefresh() bool

HasForceRefresh returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]