github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/vses/snapshot_history_list_response_vo.go (about)

     1  /*
     2   * api
     3   *
     4   * Search Engine Service(VPC) Open API<br/>https://vpcsearchengine.apigw.ntruss.com/api/v1
     5   *
     6   * API version: 2022-04-21T09:07:51Z
     7   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     8   */
     9  
    10  package vses
    11  
    12  type SnapshotHistoryListResponseVo struct {
    13  	CurrentPage int32 `json:"currentPage,omitempty"`
    14  	IsFirst bool `json:"isFirst,omitempty"`
    15  	IsLast bool `json:"isLast,omitempty"`
    16  	PageSize int32 `json:"pageSize,omitempty"`
    17  	SnapshotHistoryResponseList []SnapshotHistoryResponseVo `json:"snapshotHistoryResponseList,omitempty"`
    18  	TotalCount int64 `json:"totalCount,omitempty"`
    19  	TotalPage int32 `json:"totalPage,omitempty"`
    20  }