github.com/optim-corp/cios-golang-sdk@v0.5.1/cios/docs/SeriesAggregation.md (about)

     1  # SeriesAggregation
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **Target** | **string** | リクエストボディで指定された集計対象項目 | 
     8  **Method** | **string** | リクエストボディで指定された集計方法 | 
     9  **Counts** | **[]int64** | intervalごとの集計対象項目が有効だったデータ件数の配列 | 
    10  **Values** | [**[]AnyOfintegernumberstringbooleanarray**](AnyOfintegernumberstringbooleanarray.md) | intervalごとの集計結果の配列 | 
    11  
    12  ## Methods
    13  
    14  ### NewSeriesAggregation
    15  
    16  `func NewSeriesAggregation(target string, method string, counts []int64, values []AnyOfintegernumberstringbooleanarray, ) *SeriesAggregation`
    17  
    18  NewSeriesAggregation instantiates a new SeriesAggregation object
    19  This constructor will assign default values to properties that have it defined,
    20  and makes sure properties required by API are set, but the set of arguments
    21  will change when the set of required properties is changed
    22  
    23  ### NewSeriesAggregationWithDefaults
    24  
    25  `func NewSeriesAggregationWithDefaults() *SeriesAggregation`
    26  
    27  NewSeriesAggregationWithDefaults instantiates a new SeriesAggregation object
    28  This constructor will only assign default values to properties that have it defined,
    29  but it doesn't guarantee that properties required by API are set
    30  
    31  ### GetTarget
    32  
    33  `func (o *SeriesAggregation) GetTarget() string`
    34  
    35  GetTarget returns the Target field if non-nil, zero value otherwise.
    36  
    37  ### GetTargetOk
    38  
    39  `func (o *SeriesAggregation) GetTargetOk() (*string, bool)`
    40  
    41  GetTargetOk returns a tuple with the Target field if it's non-nil, zero value otherwise
    42  and a boolean to check if the value has been set.
    43  
    44  ### SetTarget
    45  
    46  `func (o *SeriesAggregation) SetTarget(v string)`
    47  
    48  SetTarget sets Target field to given value.
    49  
    50  
    51  ### GetMethod
    52  
    53  `func (o *SeriesAggregation) GetMethod() string`
    54  
    55  GetMethod returns the Method field if non-nil, zero value otherwise.
    56  
    57  ### GetMethodOk
    58  
    59  `func (o *SeriesAggregation) GetMethodOk() (*string, bool)`
    60  
    61  GetMethodOk returns a tuple with the Method field if it's non-nil, zero value otherwise
    62  and a boolean to check if the value has been set.
    63  
    64  ### SetMethod
    65  
    66  `func (o *SeriesAggregation) SetMethod(v string)`
    67  
    68  SetMethod sets Method field to given value.
    69  
    70  
    71  ### GetCounts
    72  
    73  `func (o *SeriesAggregation) GetCounts() []int64`
    74  
    75  GetCounts returns the Counts field if non-nil, zero value otherwise.
    76  
    77  ### GetCountsOk
    78  
    79  `func (o *SeriesAggregation) GetCountsOk() (*[]int64, bool)`
    80  
    81  GetCountsOk returns a tuple with the Counts field if it's non-nil, zero value otherwise
    82  and a boolean to check if the value has been set.
    83  
    84  ### SetCounts
    85  
    86  `func (o *SeriesAggregation) SetCounts(v []int64)`
    87  
    88  SetCounts sets Counts field to given value.
    89  
    90  
    91  ### GetValues
    92  
    93  `func (o *SeriesAggregation) GetValues() []AnyOfintegernumberstringbooleanarray`
    94  
    95  GetValues returns the Values field if non-nil, zero value otherwise.
    96  
    97  ### GetValuesOk
    98  
    99  `func (o *SeriesAggregation) GetValuesOk() (*[]AnyOfintegernumberstringbooleanarray, bool)`
   100  
   101  GetValuesOk returns a tuple with the Values field if it's non-nil, zero value otherwise
   102  and a boolean to check if the value has been set.
   103  
   104  ### SetValues
   105  
   106  `func (o *SeriesAggregation) SetValues(v []AnyOfintegernumberstringbooleanarray)`
   107  
   108  SetValues sets Values field to given value.
   109  
   110  
   111  
   112  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
   113  
   114