Skip to content

Latest commit

 

History

History
103 lines (56 loc) · 3.92 KB

File metadata and controls

103 lines (56 loc) · 3.92 KB

ViewLinkRequestFilter

Properties

Name Type Description Notes
Filter string Filter string to match resources for linking. Uses the same syntax as list endpoints: flags use comma-separated field:value filters, segments use queryfilter syntax. Supported filters by resource type: - flags: query, tags, maintainerId, maintainerTeamKey, type, status, state, staleState, sdkAvailability, targeting, hasExperiment, hasDataExport, evaluated, creationDate, contextKindTargeted, contextKindsEvaluated, filterEnv, segmentTargeted, codeReferences.min, codeReferences.max, excludeSettings, releasePipeline, applicationEvaluated, purpose, guardedRollout, view, key, name, archived, followerId - segments (queryfilter): query, tags, keys, excludedKeys, unbounded, external, view, type Some filters are only available when the corresponding feature is enabled on your account.
EnvironmentId Pointer to string Required when using filter for segment resources. Specifies which environment to query for segments matching the filter. Ignored for flag resources (flags are global across environments). [optional]
Comment Pointer to string Optional comment for the link/unlink operation [optional] [default to ""]

Methods

NewViewLinkRequestFilter

func NewViewLinkRequestFilter(filter string, ) *ViewLinkRequestFilter

NewViewLinkRequestFilter instantiates a new ViewLinkRequestFilter 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

NewViewLinkRequestFilterWithDefaults

func NewViewLinkRequestFilterWithDefaults() *ViewLinkRequestFilter

NewViewLinkRequestFilterWithDefaults instantiates a new ViewLinkRequestFilter 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

GetFilter

func (o *ViewLinkRequestFilter) GetFilter() string

GetFilter returns the Filter field if non-nil, zero value otherwise.

GetFilterOk

func (o *ViewLinkRequestFilter) GetFilterOk() (*string, bool)

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

SetFilter

func (o *ViewLinkRequestFilter) SetFilter(v string)

SetFilter sets Filter field to given value.

GetEnvironmentId

func (o *ViewLinkRequestFilter) GetEnvironmentId() string

GetEnvironmentId returns the EnvironmentId field if non-nil, zero value otherwise.

GetEnvironmentIdOk

func (o *ViewLinkRequestFilter) GetEnvironmentIdOk() (*string, bool)

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

SetEnvironmentId

func (o *ViewLinkRequestFilter) SetEnvironmentId(v string)

SetEnvironmentId sets EnvironmentId field to given value.

HasEnvironmentId

func (o *ViewLinkRequestFilter) HasEnvironmentId() bool

HasEnvironmentId returns a boolean if a field has been set.

GetComment

func (o *ViewLinkRequestFilter) GetComment() string

GetComment returns the Comment field if non-nil, zero value otherwise.

GetCommentOk

func (o *ViewLinkRequestFilter) GetCommentOk() (*string, bool)

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

SetComment

func (o *ViewLinkRequestFilter) SetComment(v string)

SetComment sets Comment field to given value.

HasComment

func (o *ViewLinkRequestFilter) HasComment() bool

HasComment returns a boolean if a field has been set.

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