constructor(credential) {
    Object.keys(credential).forEach(key => {
      Object.assign(this, { [key]: credential[key] })
    })
  }