/* tslint:disable:max-classes-per-file */ import { ObjectType, Field, ID as GraphlqID, Int } from "@nestjs/graphql"; import { ID } from "../types"; @ObjectType() export class Address { @Field(() => GraphlqID, { nullable: true }) id?: ID; @Field({ nullable: true }) country?: string; @Field({ nullable: true }) state?: string; @Field({ nullable: true }) city?: string; @Field({ nullable: true }) postalCode?: string; @Field({ nullable: true }) line?: string; @Field({ nullable: true }) line2?: string; }