{"version":3,"file":"Dmpp.mjs","sourceRoot":"","sources":["../../../../tsSourcesProject/model/samv2/embed/Dmpp.mts"],"names":[],"mappings":"AAOA,MAAM,OAAO,IAAI;IA0BhB,YAAY,OAAsB;QAxBlC,OAAE,GAAuB,SAAS,CAAC;QAEnC,SAAI,GAAuB,SAAS,CAAC;QAErC,OAAE,GAAuB,SAAS,CAAC;QAEnC,wBAAmB,GAAoC,SAAS,CAAC;QAEjE,SAAI,GAAuB,SAAS,CAAC;QAErC,aAAQ,GAA6B,SAAS,CAAC;QAE/C,UAAK,GAAuB,SAAS,CAAC;QAEtC,UAAK,GAAwB,SAAS,CAAC;QAEvC,aAAQ,GAAwB,SAAS,CAAC;QAE1C,iBAAY,GAAwB,SAAS,CAAC;QAE9C,mBAAc,GAAqC,SAAS,CAAC;QAE7D,cAAS,GAAuB,SAAS,CAAC;QAGzC,IAAI,IAAI,IAAI,OAAO;YAAE,IAAI,CAAC,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC;QAC1C,IAAI,MAAM,IAAI,OAAO;YAAE,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QAChD,IAAI,IAAI,IAAI,OAAO;YAAE,IAAI,CAAC,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC;QAC1C,IAAI,qBAAqB,IAAI,OAAO;YAAE,IAAI,CAAC,mBAAmB,GAAG,OAAO,CAAC,mBAAmB,CAAC;QAC7F,IAAI,MAAM,IAAI,OAAO;YAAE,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;QAChD,IAAI,UAAU,IAAI,OAAO;YAAE,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;QAC5D,IAAI,OAAO,IAAI,OAAO;YAAE,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;QACnD,IAAI,OAAO,IAAI,OAAO;YAAE,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;QACnD,IAAI,UAAU,IAAI,OAAO;YAAE,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;QAC5D,IAAI,cAAc,IAAI,OAAO;YAAE,IAAI,CAAC,YAAY,GAAG,OAAO,CAAC,YAAY,CAAC;QACxE,IAAI,gBAAgB,IAAI,OAAO;YAAE,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;QAC9E,IAAI,WAAW,IAAI,OAAO;YAAE,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;IAChE,CAAC;CAED","sourcesContent":["// auto-generated file\nimport {DataPeriod} from './DataPeriod.mjs';\nimport {DeliveryEnvironment} from './DeliveryEnvironment.mjs';\nimport {DmppCodeType} from './DmppCodeType.mjs';\nimport {Reimbursement} from './Reimbursement.mjs';\n\n\nexport class Dmpp implements DataPeriod {\n\n\tid: string | undefined = undefined;\n\n\tfrom: number | undefined = undefined;\n\n\tto: number | undefined = undefined;\n\n\tdeliveryEnvironment: DeliveryEnvironment | undefined = undefined;\n\n\tcode: string | undefined = undefined;\n\n\tcodeType: DmppCodeType | undefined = undefined;\n\n\tprice: string | undefined = undefined;\n\n\tcheap: boolean | undefined = undefined;\n\n\tcheapest: boolean | undefined = undefined;\n\n\treimbursable: boolean | undefined = undefined;\n\n\treimbursements: Array<Reimbursement> | undefined = undefined;\n\n\tproductId: string | undefined = undefined;\n\n\tconstructor(partial: Partial<Dmpp>) {\n\t\tif ('id' in partial) this.id = partial.id;\n\t\tif ('from' in partial) this.from = partial.from;\n\t\tif ('to' in partial) this.to = partial.to;\n\t\tif ('deliveryEnvironment' in partial) this.deliveryEnvironment = partial.deliveryEnvironment;\n\t\tif ('code' in partial) this.code = partial.code;\n\t\tif ('codeType' in partial) this.codeType = partial.codeType;\n\t\tif ('price' in partial) this.price = partial.price;\n\t\tif ('cheap' in partial) this.cheap = partial.cheap;\n\t\tif ('cheapest' in partial) this.cheapest = partial.cheapest;\n\t\tif ('reimbursable' in partial) this.reimbursable = partial.reimbursable;\n\t\tif ('reimbursements' in partial) this.reimbursements = partial.reimbursements;\n\t\tif ('productId' in partial) this.productId = partial.productId;\n\t}\n\n}\n"]}