Skip to content

Instantly share code, notes, and snippets.

@b4n92uid
Last active September 23, 2023 11:13
Show Gist options
  • Save b4n92uid/fb72db11cefdbacef1c48aed3c5a216a to your computer and use it in GitHub Desktop.
Save b4n92uid/fb72db11cefdbacef1c48aed3c5a216a to your computer and use it in GitHub Desktop.
[Vue] Assessment Test (Hard)
// Generated by https://quicktype.io
export interface Contact {
gender: string;
name: Name;
location: Location;
email: string;
login: Login;
dob: Dob;
registered: Dob;
phone: string;
cell: string;
id: ID;
picture: Picture;
nat: string;
}
export interface Dob {
date: string;
age: number;
}
export interface ID {
name: string;
value: string;
}
export interface Location {
street: Street;
city: string;
state: string;
country: string;
postcode: string;
coordinates: Coordinates;
timezone: Timezone;
}
export interface Coordinates {
latitude: string;
longitude: string;
}
export interface Street {
number: number;
name: string;
}
export interface Timezone {
offset: string;
description: string;
}
export interface Login {
uuid: string;
username: string;
password: string;
salt: string;
md5: string;
sha1: string;
sha256: string;
}
export interface Name {
title: string;
first: string;
last: string;
}
export interface Picture {
large: string;
medium: string;
thumbnail: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment