/** * Example API * An example application with OpenAPI, Swashbuckle, and API versioning. * Bill Mei * bill.mei@somewhere.com * MIT * https://opensource.org/licenses/MIT * 1.0 * undefined */ export interface PostUserInformationRequest { /** User phone, should be in international format 37533... */ userPhone: string; /** First name should not be empty */ firstName: string; /** last name should not be empty */ lastName: string; /** should be removed */ clientType?: string; /** City of user */ city?: string; /** Country of user */ country?: string; /** * Date of birth * format: date-time */ dateOfBirth?: string; /** Social link */ facebookLink?: string; /** Social link */ vkLink?: string; /** External Email */ email?: string; /** Social link */ googleplus?: string; /** Social link */ site?: string; /** Social link */ instagram?: string; }