{"version":3,"file":"SupplyProblem.mjs","sourceRoot":"","sources":["../../../../tsSourcesProject/model/samv2/embed/SupplyProblem.mts"],"names":[],"mappings":"AAKA,MAAM,OAAO,aAAa;IAczB,YAAY,OAA+B;QAZ3C,SAAI,GAAuB,SAAS,CAAC;QAErC,OAAE,GAAuB,SAAS,CAAC;QAEnC,WAAM,GAAwB,SAAS,CAAC;QAExC,kBAAa,GAAuB,SAAS,CAAC;QAE9C,WAAM,GAAwB,SAAS,CAAC;QAExC,0BAAqB,GAAwB,SAAS,CAAC;QAGtD,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,QAAQ,IAAI,OAAO;YAAE,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;QACtD,IAAI,eAAe,IAAI,OAAO;YAAE,IAAI,CAAC,aAAa,GAAG,OAAO,CAAC,aAAa,CAAC;QAC3E,IAAI,QAAQ,IAAI,OAAO;YAAE,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;QACtD,IAAI,uBAAuB,IAAI,OAAO;YAAE,IAAI,CAAC,qBAAqB,GAAG,OAAO,CAAC,qBAAqB,CAAC;IACpG,CAAC;CAED","sourcesContent":["// auto-generated file\nimport {DataPeriod} from './DataPeriod.mjs';\nimport {SamText} from './SamText.mjs';\n\n\nexport class SupplyProblem implements DataPeriod {\n\n\tfrom: number | undefined = undefined;\n\n\tto: number | undefined = undefined;\n\n\treason: SamText | undefined = undefined;\n\n\texpectedEndOn: number | undefined = undefined;\n\n\timpact: SamText | undefined = undefined;\n\n\tadditionalInformation: SamText | undefined = undefined;\n\n\tconstructor(partial: Partial<SupplyProblem>) {\n\t\tif ('from' in partial) this.from = partial.from;\n\t\tif ('to' in partial) this.to = partial.to;\n\t\tif ('reason' in partial) this.reason = partial.reason;\n\t\tif ('expectedEndOn' in partial) this.expectedEndOn = partial.expectedEndOn;\n\t\tif ('impact' in partial) this.impact = partial.impact;\n\t\tif ('additionalInformation' in partial) this.additionalInformation = partial.additionalInformation;\n\t}\n\n}\n"]}