#!/usr/bin/env python # -*- coding: utf-8 -*- import json from alipay.aop.api.constant.ParamConstants import * class UserLoginStatusDetail(object): def __init__(self): self._contact_email = None self._contact_name = None self._contact_phone = None self._user_id = None self._user_name = None self._user_show_name = None @property def contact_email(self): return self._contact_email @contact_email.setter def contact_email(self, value): self._contact_email = value @property def contact_name(self): return self._contact_name @contact_name.setter def contact_name(self, value): self._contact_name = value @property def contact_phone(self): return self._contact_phone @contact_phone.setter def contact_phone(self, value): self._contact_phone = value @property def user_id(self): return self._user_id @user_id.setter def user_id(self, value): self._user_id = value @property def user_name(self): return self._user_name @user_name.setter def user_name(self, value): self._user_name = value @property def user_show_name(self): return self._user_show_name @user_show_name.setter def user_show_name(self, value): self._user_show_name = value def to_alipay_dict(self): params = dict() if self.contact_email: if hasattr(self.contact_email, 'to_alipay_dict'): params['contact_email'] = self.contact_email.to_alipay_dict() else: params['contact_email'] = self.contact_email if self.contact_name: if hasattr(self.contact_name, 'to_alipay_dict'): params['contact_name'] = self.contact_name.to_alipay_dict() else: params['contact_name'] = self.contact_name if self.contact_phone: if hasattr(self.contact_phone, 'to_alipay_dict'): params['contact_phone'] = self.contact_phone.to_alipay_dict() else: params['contact_phone'] = self.contact_phone if self.user_id: if hasattr(self.user_id, 'to_alipay_dict'): params['user_id'] = self.user_id.to_alipay_dict() else: params['user_id'] = self.user_id if self.user_name: if hasattr(self.user_name, 'to_alipay_dict'): params['user_name'] = self.user_name.to_alipay_dict() else: params['user_name'] = self.user_name if self.user_show_name: if hasattr(self.user_show_name, 'to_alipay_dict'): params['user_show_name'] = self.user_show_name.to_alipay_dict() else: params['user_show_name'] = self.user_show_name return params @staticmethod def from_alipay_dict(d): if not d: return None o = UserLoginStatusDetail() if 'contact_email' in d: o.contact_email = d['contact_email'] if 'contact_name' in d: o.contact_name = d['contact_name'] if 'contact_phone' in d: o.contact_phone = d['contact_phone'] if 'user_id' in d: o.user_id = d['user_id'] if 'user_name' in d: o.user_name = d['user_name'] if 'user_show_name' in d: o.user_show_name = d['user_show_name'] return o