This repository has no description
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: org.tangled.temp.account.setPrimaryEmail
6
7import (
8 "context"
9
10 "github.com/bluesky-social/indigo/lex/util"
11)
12
13const (
14 TempAccountSetPrimaryEmailNSID = "org.tangled.temp.account.setPrimaryEmail"
15)
16
17// TempAccountSetPrimaryEmail_Input is the input argument to a org.tangled.temp.account.setPrimaryEmail call.
18type TempAccountSetPrimaryEmail_Input struct {
19 // email: Email address to promote to primary.
20 Email string `json:"email" cborgen:"email"`
21}
22
23// TempAccountSetPrimaryEmail calls the XRPC method "org.tangled.temp.account.setPrimaryEmail".
24func TempAccountSetPrimaryEmail(ctx context.Context, c util.LexClient, input *TempAccountSetPrimaryEmail_Input) error {
25 if err := c.LexDo(ctx, util.Procedure, "application/json", "org.tangled.temp.account.setPrimaryEmail", nil, input, nil); err != nil {
26 return err
27 }
28
29 return nil
30}