/** * This file is generated by the SwaggerTSGenerator. * Do not edit. */ /* tslint:disable */ import { BaseModel } from './base-model'; import { SubTypeFactory } from './sub-type-factory'; import { IPartyRoleInContract, PartyRoleInContract } from './party-role-in-contract.model'; export interface IPricingLeader extends IPartyRoleInContract{ } export class PricingLeader extends PartyRoleInContract implements IPricingLeader { static TYPE_SELECTOR = 'PricingLeader'; /** * constructor * @param values Can be used to set a webapi response or formValues to this newly constructed model */ constructor(values?: Partial) { super(); this.typeSelector = PricingLeader.TYPE_SELECTOR; if (values) { this.setValues(values); } } /** * set the values. * @param values Can be used to set a webapi response to this newly constructed model */ setValues(values: Partial): void { if (values) { super.setValues(values) const rawValues = values } } }