/** * * @export * @interface UserInfoSocialUserinfoList */ export interface UserInfoSocialUserinfoList { /** * The ID of the user within the social media platform. * @type {string} * @memberof UserInfoSocialUserinfoList */ 'socialUserId'?: string; /** * The ID of the social media platform. * @type {string} * @memberof UserInfoSocialUserinfoList */ 'providerId'?: string; /** * The name of the social media platform. * @type {string} * @memberof UserInfoSocialUserinfoList */ 'providerName'?: string; }