-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_api_comparison_type.go
32 lines (29 loc) · 1.38 KB
/
model_api_comparison_type.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
/*
* Uptrends API v4
*
* This document describes Uptrends API version 4. This Swagger environment also lets you execute API methods directly. Please note that this is not a sandbox environment: these API methods operate directly on your actual Uptrends account. For more information, please visit https://www.uptrends.com/api.
*
* API version: 1.0.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package uptrends
// ApiComparisonType :
type ApiComparisonType string
// List of ApiComparisonType
const (
EQUAL ApiComparisonType = "Equal"
DOES_NOT_EQUAL ApiComparisonType = "DoesNotEqual"
CONTAINS_TEXT ApiComparisonType = "ContainsText"
DOES_NOT_CONTAIN_TEXT ApiComparisonType = "DoesNotContainText"
SHOULD_BE_IGNORED ApiComparisonType = "ShouldBeIgnored"
LESS_THAN ApiComparisonType = "LessThan"
GREATER_THAN ApiComparisonType = "GreaterThan"
LESS_THAN_OR_EQUAL ApiComparisonType = "LessThanOrEqual"
GREATER_THAN_OR_EQUAL ApiComparisonType = "GreaterThanOrEqual"
IS_NOT_EMPTY ApiComparisonType = "IsNotEmpty"
IS_EMPTY ApiComparisonType = "IsEmpty"
IS_NOT_NULL ApiComparisonType = "IsNotNull"
IS_NULL ApiComparisonType = "IsNull"
DOES_NOT_EXIST ApiComparisonType = "DoesNotExist"
EXISTS ApiComparisonType = "Exists"
)