Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DeleteCmd = &cobra.Command{ Use: "delete <payment method ID>", Short: "Delete payment method", Long: `This endpoint deletes a payment method. Deleted payment methods can no longer be used for placing new orders.`, Args: cobra.MatchAll(cobra.ExactArgs(1)), Run: func(cmd *cobra.Command, args []string) { r, err := api.Request().BillingDeletePaymentMethodV1WithResponse(context.TODO(), utils.StringToInt(args[0])) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
View Source
var GroupCmd = &cobra.Command{
Use: "payment-methods",
Short: "Payment method management",
Long: ``,
}
View Source
var ListCmd = &cobra.Command{ Use: "list", Short: "Get payment method list", Long: `This endpoint retrieves a list of available payment methods that can be used for placing new orders.`, Run: func(cmd *cobra.Command, args []string) { r, err := api.Request().BillingGetPaymentMethodListV1WithResponse(context.TODO()) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
View Source
var SetDefaultCmd = &cobra.Command{ Use: "set-default <payment method ID>", Short: "Set default payment method", Long: `This endpoint sets a specified payment method as the default. The default payment method is used automatically for new orders.`, Args: cobra.MatchAll(cobra.ExactArgs(1)), Run: func(cmd *cobra.Command, args []string) { r, err := api.Request().BillingSetDefaultPaymentMethodV1WithResponse(context.TODO(), utils.StringToInt(args[0])) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.