interface ICard { id: string alias: string alias_type?: string billing_address?: string bin?: string brand?: string country_id?: string created_at: string expires_at: any holder_name?: string issuer?: string number: string type?: string updated_at?: string user_id: string variant?: string variant_method?: string } export default { id: 'fc8b8808-ecc0-43e2-bbce-ec4a152fc152', alias: 'E840075550837687', alias_type: null, billing_address: null, bin: null, brand: null, country_id: null, created_at: '2017-02-27T12:58:44.643Z', expires_at: new Date('2018-08-30T22:00:00.000Z'), holder_name: null, issuer: null, number: '8908', type: null, updated_at: null, user_id: 'da508a70-fcf4-11e6-a4d6-1d6df5ebeaf0', variant: null, variant_method: null } as ICard