本文整理汇总了TypeScript中claims/models/claimant-response/claimantResponseCommon.ClaimantResponseCommon.deserialize方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ClaimantResponseCommon.deserialize方法的具体用法?TypeScript ClaimantResponseCommon.deserialize怎么用?TypeScript ClaimantResponseCommon.deserialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类claims/models/claimant-response/claimantResponseCommon.ClaimantResponseCommon
的用法示例。
在下文中一共展示了ClaimantResponseCommon.deserialize方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: deserialize
export function deserialize (input: any): ResponseRejection {
return {
...ClaimantResponseCommon.deserialize(input),
reason: input.reason,
freeMediation: input.freeMediation
}
}
示例2: deserialize
export function deserialize (input: any): RejectionClaimantResponse {
if (!input) {
return input
}
return {
...ClaimantResponseCommon.deserialize(input),
type: ClaimantResponseType.REJECTION,
freeMediation: input.freeMediation,
reason: input.reason
}
}
示例3: deserialize
export function deserialize (input: any): AcceptationClaimantResponse {
if (!input) {
return input
}
return {
...ClaimantResponseCommon.deserialize(input),
type: ClaimantResponseType.ACCEPTATION,
claimantPaymentIntention: PaymentIntention.deserialize(input.claimantPaymentIntention),
courtDetermination: CourtDetermination.deserialize(input.courtDetermination),
formaliseOption: input.formaliseOption
}
}
示例4: deserialize
export function deserialize (input: any): ResponseAcceptation {
return {
...ClaimantResponseCommon.deserialize(input)
}
}