-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtenanttemplateversion.go
More file actions
65 lines (58 loc) · 2.27 KB
/
tenanttemplateversion.go
File metadata and controls
65 lines (58 loc) · 2.27 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package courier
import (
"context"
"errors"
"fmt"
"net/http"
"slices"
"github.com/trycourier/courier-go/v4/internal/requestconfig"
"github.com/trycourier/courier-go/v4/option"
)
// TenantTemplateVersionService contains methods and other services that help with
// interacting with the Courier API.
//
// Note, unlike clients, this service does not read variables from the environment
// automatically. You should not instantiate this service directly, and instead use
// the [NewTenantTemplateVersionService] method instead.
type TenantTemplateVersionService struct {
Options []option.RequestOption
}
// NewTenantTemplateVersionService generates a new service that applies the given
// options to each request. These options are applied after the parent client's
// options (if there is one), and before any request-specific options.
func NewTenantTemplateVersionService(opts ...option.RequestOption) (r TenantTemplateVersionService) {
r = TenantTemplateVersionService{}
r.Options = opts
return
}
// Fetches a specific version of a tenant template.
//
// Supports the following version formats:
//
// - `latest` - The most recent version of the template
// - `published` - The currently published version
// - `v{version}` - A specific version (e.g., "v1", "v2", "v1.0.0")
func (r *TenantTemplateVersionService) Get(ctx context.Context, version string, query TenantTemplateVersionGetParams, opts ...option.RequestOption) (res *BaseTemplateTenantAssociation, err error) {
opts = slices.Concat(r.Options, opts)
if query.TenantID == "" {
err = errors.New("missing required tenant_id parameter")
return nil, err
}
if query.TemplateID == "" {
err = errors.New("missing required template_id parameter")
return nil, err
}
if version == "" {
err = errors.New("missing required version parameter")
return nil, err
}
path := fmt.Sprintf("tenants/%s/templates/%s/versions/%s", query.TenantID, query.TemplateID, version)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
return res, err
}
type TenantTemplateVersionGetParams struct {
TenantID string `path:"tenant_id" api:"required" json:"-"`
TemplateID string `path:"template_id" api:"required" json:"-"`
paramObj
}