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

     1  # MultipleSeriesImage
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **Total** | **int64** | 検索条件にマッチする全結果数 | 
     8  **Data** | [**[]SeriesImage**](SeriesImage.md) | 画像データとタイムスタンプの配列。データが0件の場合は空配列。 | 
     9  **ImageMap** | **map[string]int32** | timestampがキーとなってdataのindexが格納されているhashmap | 
    10  
    11  ## Methods
    12  
    13  ### NewMultipleSeriesImage
    14  
    15  `func NewMultipleSeriesImage(total int64, data []SeriesImage, imageMap map[string]int32, ) *MultipleSeriesImage`
    16  
    17  NewMultipleSeriesImage instantiates a new MultipleSeriesImage object
    18  This constructor will assign default values to properties that have it defined,
    19  and makes sure properties required by API are set, but the set of arguments
    20  will change when the set of required properties is changed
    21  
    22  ### NewMultipleSeriesImageWithDefaults
    23  
    24  `func NewMultipleSeriesImageWithDefaults() *MultipleSeriesImage`
    25  
    26  NewMultipleSeriesImageWithDefaults instantiates a new MultipleSeriesImage object
    27  This constructor will only assign default values to properties that have it defined,
    28  but it doesn't guarantee that properties required by API are set
    29  
    30  ### GetTotal
    31  
    32  `func (o *MultipleSeriesImage) GetTotal() int64`
    33  
    34  GetTotal returns the Total field if non-nil, zero value otherwise.
    35  
    36  ### GetTotalOk
    37  
    38  `func (o *MultipleSeriesImage) GetTotalOk() (*int64, bool)`
    39  
    40  GetTotalOk returns a tuple with the Total field if it's non-nil, zero value otherwise
    41  and a boolean to check if the value has been set.
    42  
    43  ### SetTotal
    44  
    45  `func (o *MultipleSeriesImage) SetTotal(v int64)`
    46  
    47  SetTotal sets Total field to given value.
    48  
    49  
    50  ### GetData
    51  
    52  `func (o *MultipleSeriesImage) GetData() []SeriesImage`
    53  
    54  GetData returns the Data field if non-nil, zero value otherwise.
    55  
    56  ### GetDataOk
    57  
    58  `func (o *MultipleSeriesImage) GetDataOk() (*[]SeriesImage, bool)`
    59  
    60  GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
    61  and a boolean to check if the value has been set.
    62  
    63  ### SetData
    64  
    65  `func (o *MultipleSeriesImage) SetData(v []SeriesImage)`
    66  
    67  SetData sets Data field to given value.
    68  
    69  
    70  ### GetImageMap
    71  
    72  `func (o *MultipleSeriesImage) GetImageMap() map[string]int32`
    73  
    74  GetImageMap returns the ImageMap field if non-nil, zero value otherwise.
    75  
    76  ### GetImageMapOk
    77  
    78  `func (o *MultipleSeriesImage) GetImageMapOk() (*map[string]int32, bool)`
    79  
    80  GetImageMapOk returns a tuple with the ImageMap field if it's non-nil, zero value otherwise
    81  and a boolean to check if the value has been set.
    82  
    83  ### SetImageMap
    84  
    85  `func (o *MultipleSeriesImage) SetImageMap(v map[string]int32)`
    86  
    87  SetImageMap sets ImageMap field to given value.
    88  
    89  
    90  
    91  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    92  
    93