Versions in this module Expand all Collapse all v0 v0.1.0 Jan 23, 2023 Changes in this version + var ErrGetSheetIdNotFound = fmt.Errorf("sheet not found") + type Option func(*option_) + func WithMajorDimension(md string) Option + func WithValueInputOption(viopt string) Option + type Service struct + func NewService(ctx context.Context, client *http.Client) (*Service, error) + func (s Service) DeleteRows(spreadsheetId string, sheetTitle string, startIndex int64, endIndex int64) error + func (s Service) Get(spreadsheetId string, range_ string, options ...Option) (*sheets.ValueRange, error) + func (s Service) GetObj(spreadsheetId string, range_ string, dst interface{}, options ...Option) error + func (s Service) GetSheetId(spreadsheetId string, title string) (int64, error) + func (s Service) Update(spreadsheetId string, range_ string, values [][]interface{}, options ...Option) error + func (s Service) UpdateSheet(spreadsheetId string, sheetTitle string, src interface{}, options ...Option) error