(idType: string, idValue: string)
| 648 | * Generates: { ID: { attributes: { 'wd:type': idType }, $value: idValue } } |
| 649 | */ |
| 650 | export function wdRef(idType: string, idValue: string): { ID: WorkdayIdEntry } { |
| 651 | return { |
| 652 | ID: { |
| 653 | attributes: { 'wd:type': idType }, |
| 654 | $value: idValue, |
| 655 | }, |
| 656 | } |
| 657 | } |
| 658 | |
| 659 | /** |
| 660 | * Extracts a reference ID from a SOAP response object. |