import * as MyAccount from "../index.js"; export interface CreatePhoneAuthenticationMethod { /** Authentication method type (factor) */ type: "phone"; /** The destination phone number used to send verification codes via text and voice. */ phone_number: string; /** The preferred communication method. */ preferred_authentication_method?: MyAccount.PhoneAuthenticationMethodEnum; }