// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. // Lexicon schema: app.bsky.contact.startPhoneVerification package bsky import ( "context" lexutil "github.com/bluesky-social/indigo/lex/util" ) // ContactStartPhoneVerification_Input is the input argument to a app.bsky.contact.startPhoneVerification call. type ContactStartPhoneVerification_Input struct { // phone: The phone number to receive the code via SMS. Phone string `json:"phone" cborgen:"phone"` } // ContactStartPhoneVerification_Output is the output of a app.bsky.contact.startPhoneVerification call. type ContactStartPhoneVerification_Output struct { } // ContactStartPhoneVerification calls the XRPC method "app.bsky.contact.startPhoneVerification". func ContactStartPhoneVerification(ctx context.Context, c lexutil.LexClient, input *ContactStartPhoneVerification_Input) (*ContactStartPhoneVerification_Output, error) { var out ContactStartPhoneVerification_Output if err := c.LexDo(ctx, lexutil.Procedure, "application/json", "app.bsky.contact.startPhoneVerification", nil, input, &out); err != nil { return nil, err } return &out, nil }