forked from orbcorp/orb-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpriceexternalpriceid.go
More file actions
74 lines (65 loc) · 2.87 KB
/
priceexternalpriceid.go
File metadata and controls
74 lines (65 loc) · 2.87 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
66
67
68
69
70
71
72
73
74
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package orb
import (
"context"
"errors"
"fmt"
"net/http"
"github.com/orbcorp/orb-go/internal/apijson"
"github.com/orbcorp/orb-go/internal/param"
"github.com/orbcorp/orb-go/internal/requestconfig"
"github.com/orbcorp/orb-go/option"
"github.com/orbcorp/orb-go/shared"
)
// PriceExternalPriceIDService contains methods and other services that help with
// interacting with the orb 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 [NewPriceExternalPriceIDService] method instead.
type PriceExternalPriceIDService struct {
Options []option.RequestOption
}
// NewPriceExternalPriceIDService 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 NewPriceExternalPriceIDService(opts ...option.RequestOption) (r *PriceExternalPriceIDService) {
r = &PriceExternalPriceIDService{}
r.Options = opts
return
}
// This endpoint allows you to update the `metadata` property on a price. If you
// pass null for the metadata value, it will clear any existing metadata for that
// price.
func (r *PriceExternalPriceIDService) Update(ctx context.Context, externalPriceID string, body PriceExternalPriceIDUpdateParams, opts ...option.RequestOption) (res *shared.Price, err error) {
opts = append(r.Options[:], opts...)
if externalPriceID == "" {
err = errors.New("missing required external_price_id parameter")
return
}
path := fmt.Sprintf("prices/external_price_id/%s", externalPriceID)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPut, path, body, &res, opts...)
return
}
// This endpoint returns a price given an external price id. See the
// [price creation API](/api-reference/price/create-price) for more information
// about external price aliases.
func (r *PriceExternalPriceIDService) Fetch(ctx context.Context, externalPriceID string, opts ...option.RequestOption) (res *shared.Price, err error) {
opts = append(r.Options[:], opts...)
if externalPriceID == "" {
err = errors.New("missing required external_price_id parameter")
return
}
path := fmt.Sprintf("prices/external_price_id/%s", externalPriceID)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
return
}
type PriceExternalPriceIDUpdateParams struct {
// User-specified key/value pairs for the resource. Individual keys can be removed
// by setting the value to `null`, and the entire metadata mapping can be cleared
// by setting `metadata` to `null`.
Metadata param.Field[map[string]string] `json:"metadata"`
}
func (r PriceExternalPriceIDUpdateParams) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}