|
| 1 | +import { type AdditionalDataHolder, type BaseRequestBuilder, type Parsable, type ParsableFactory, type ParseNode, type RequestConfiguration, type RequestInformation, type RequestsMetadata, type SerializationWriter } from "@microsoft/kiota-abstractions"; |
| 2 | + |
| 3 | +export interface Cat extends Parsable, Pet { |
| 4 | + /** |
| 5 | + * The favoriteToy property |
| 6 | + */ |
| 7 | + favoriteToy?: string; |
| 8 | +} |
| 9 | +/** |
| 10 | + * Creates a new instance of the appropriate class based on discriminator value |
| 11 | + * @param parseNode The parse node to use to read the discriminator value and create the object |
| 12 | + * @returns {Cat} |
| 13 | + */ |
| 14 | +export function createCatFromDiscriminatorValue(parseNode: ParseNode | undefined): (instance?: Parsable) => Record<string, (node: ParseNode) => void> { |
| 15 | + return deserializeIntoCat; |
| 16 | +} |
| 17 | +/** |
| 18 | + * Creates a new instance of the appropriate class based on discriminator value |
| 19 | + * @param parseNode The parse node to use to read the discriminator value and create the object |
| 20 | + * @returns {Dog} |
| 21 | + */ |
| 22 | +export function createDogFromDiscriminatorValue(parseNode: ParseNode | undefined): (instance?: Parsable) => Record<string, (node: ParseNode) => void> { |
| 23 | + return deserializeIntoDog; |
| 24 | +} |
| 25 | +/** |
| 26 | + * Creates a new instance of the appropriate class based on discriminator value |
| 27 | + * @param parseNode The parse node to use to read the discriminator value and create the object |
| 28 | + * @returns {Pet} |
| 29 | + */ |
| 30 | +export function createPetFromDiscriminatorValue(parseNode: ParseNode | undefined): (instance?: Parsable) => Record<string, (node: ParseNode) => void> { |
| 31 | + return deserializeIntoPet; |
| 32 | +} |
| 33 | +/** |
| 34 | + * The deserialization information for the current model |
| 35 | + * @returns {Record<string, (node: ParseNode) => void>} |
| 36 | + */ |
| 37 | +export function deserializeIntoCat(cat: Partial<Cat> | undefined = {}): Record<string, (node: ParseNode) => void> { |
| 38 | + return { |
| 39 | + ...deserializeIntoPet(cat), |
| 40 | + favoriteToy: (n) => { |
| 41 | + cat.favoriteToy = n.getStringValue(); |
| 42 | + }, |
| 43 | + }; |
| 44 | +} |
| 45 | +/** |
| 46 | + * The deserialization information for the current model |
| 47 | + * @returns {Record<string, (node: ParseNode) => void>} |
| 48 | + */ |
| 49 | +export function deserializeIntoDog(dog: Partial<Dog> | undefined = {}): Record<string, (node: ParseNode) => void> { |
| 50 | + return { |
| 51 | + ...deserializeIntoPet(dog), |
| 52 | + breed: (n) => { |
| 53 | + dog.breed = n.getStringValue(); |
| 54 | + }, |
| 55 | + }; |
| 56 | +} |
| 57 | +/** |
| 58 | + * The deserialization information for the current model |
| 59 | + * @returns {Record<string, (node: ParseNode) => void>} |
| 60 | + */ |
| 61 | +export function deserializeIntoPet(pet: Partial<Pet> | undefined = {}): Record<string, (node: ParseNode) => void> { |
| 62 | + return { |
| 63 | + age: (n) => { |
| 64 | + pet.age = n.getNumberValue(); |
| 65 | + }, |
| 66 | + name: (n) => { |
| 67 | + pet.name = n.getStringValue(); |
| 68 | + }, |
| 69 | + }; |
| 70 | +} |
| 71 | +export interface Dog extends Parsable, Pet { |
| 72 | + /** |
| 73 | + * The breed property |
| 74 | + */ |
| 75 | + breed?: string; |
| 76 | +} |
| 77 | +export interface Pet extends AdditionalDataHolder, Parsable { |
| 78 | + /** |
| 79 | + * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. |
| 80 | + */ |
| 81 | + additionalData?: Record<string, unknown>; |
| 82 | + /** |
| 83 | + * The age property |
| 84 | + */ |
| 85 | + age?: number; |
| 86 | + /** |
| 87 | + * The name property |
| 88 | + */ |
| 89 | + name?: string; |
| 90 | +} |
| 91 | +/** |
| 92 | + * Serializes information the current object |
| 93 | + * @param writer Serialization writer to use to serialize this model |
| 94 | + */ |
| 95 | +export function serializeCat(writer: SerializationWriter, cat: Partial<Cat> | undefined = {}): void { |
| 96 | + serializePet(writer, cat); |
| 97 | + writer.writeStringValue("favoriteToy", cat.favoriteToy); |
| 98 | +} |
| 99 | +/** |
| 100 | + * Serializes information the current object |
| 101 | + * @param writer Serialization writer to use to serialize this model |
| 102 | + */ |
| 103 | +export function serializeDog(writer: SerializationWriter, dog: Partial<Dog> | undefined = {}): void { |
| 104 | + serializePet(writer, dog); |
| 105 | + writer.writeStringValue("breed", dog.breed); |
| 106 | +} |
| 107 | +/** |
| 108 | + * Serializes information the current object |
| 109 | + * @param writer Serialization writer to use to serialize this model |
| 110 | + */ |
| 111 | +export function serializePet(writer: SerializationWriter, pet: Partial<Pet> | undefined = {}): void { |
| 112 | + writer.writeNumberValue("age", pet.age); |
| 113 | + writer.writeStringValue("name", pet.name); |
| 114 | + writer.writeAdditionalData(pet.additionalData); |
| 115 | +} |
| 116 | +/* tslint:enable */ |
| 117 | +/* eslint-enable */ |
| 118 | +/** |
| 119 | + * Creates a new instance of the appropriate class based on discriminator value |
| 120 | + * @param parseNode The parse node to use to read the discriminator value and create the object |
| 121 | + * @returns {Cat | Dog} |
| 122 | + */ |
| 123 | +export function createPetGetResponse_dataFromDiscriminatorValue(parseNode: ParseNode | undefined): (instance?: Parsable) => Record<string, (node: ParseNode) => void> { |
| 124 | + return deserializeIntoPetGetResponse_data; |
| 125 | +} |
| 126 | +/** |
| 127 | + * Creates a new instance of the appropriate class based on discriminator value |
| 128 | + * @param parseNode The parse node to use to read the discriminator value and create the object |
| 129 | + * @returns {PetGetResponse} |
| 130 | + */ |
| 131 | +export function createPetGetResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): (instance?: Parsable) => Record<string, (node: ParseNode) => void> { |
| 132 | + return deserializeIntoPetGetResponse; |
| 133 | +} |
| 134 | +/** |
| 135 | + * The deserialization information for the current model |
| 136 | + * @returns {Record<string, (node: ParseNode) => void>} |
| 137 | + */ |
| 138 | +export function deserializeIntoPetGetResponse(petGetResponse: Partial<PetGetResponse> | undefined = {}): Record<string, (node: ParseNode) => void> { |
| 139 | + return { |
| 140 | + data: (n) => { |
| 141 | + petGetResponse.data = n.getNumberValue() ?? n.getStringValue() ?? n.getObjectValue<Cat | Dog>(createPetGetResponse_dataFromDiscriminatorValue); |
| 142 | + }, |
| 143 | + request_id: (n) => { |
| 144 | + petGetResponse.request_id = n.getStringValue(); |
| 145 | + }, |
| 146 | + }; |
| 147 | +} |
| 148 | +/** |
| 149 | + * The deserialization information for the current model |
| 150 | + * @returns {Record<string, (node: ParseNode) => void>} |
| 151 | + */ |
| 152 | +export function deserializeIntoPetGetResponse_data(petGetResponse_data: Partial<Cat | Dog> | undefined = {}): Record<string, (node: ParseNode) => void> { |
| 153 | + return { |
| 154 | + ...deserializeIntoCat(petGetResponse_data as Cat), |
| 155 | + ...deserializeIntoDog(petGetResponse_data as Dog), |
| 156 | + }; |
| 157 | +} |
| 158 | +export interface PetGetResponse extends AdditionalDataHolder, Parsable { |
| 159 | + /** |
| 160 | + * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. |
| 161 | + */ |
| 162 | + additionalData?: Record<string, unknown>; |
| 163 | + /** |
| 164 | + * The data property |
| 165 | + */ |
| 166 | + data?: Cat | Dog | number | string; |
| 167 | + /** |
| 168 | + * The request_id property |
| 169 | + */ |
| 170 | + request_id?: string; |
| 171 | +} |
| 172 | +export type PetGetResponse_data = Cat | Dog | number | string; |
| 173 | +/** |
| 174 | + * Builds and executes requests for operations under /pet |
| 175 | + */ |
| 176 | +export interface PetRequestBuilder extends BaseRequestBuilder<PetRequestBuilder> { |
| 177 | + /** |
| 178 | + * Get pet information |
| 179 | + * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. |
| 180 | + * @returns {Promise<PetGetResponse>} |
| 181 | + */ |
| 182 | + get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PetGetResponse | undefined>; |
| 183 | + /** |
| 184 | + * Get pet information |
| 185 | + * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. |
| 186 | + * @returns {RequestInformation} |
| 187 | + */ |
| 188 | + toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; |
| 189 | +} |
| 190 | +/** |
| 191 | + * Serializes information the current object |
| 192 | + * @param writer Serialization writer to use to serialize this model |
| 193 | + */ |
| 194 | +export function serializePetGetResponse(writer: SerializationWriter, petGetResponse: Partial<PetGetResponse> | undefined = {}): void { |
| 195 | + switch (true) { |
| 196 | + case typeof petGetResponse.data === "number": |
| 197 | + writer.writeNumberValue("data", petGetResponse.data); |
| 198 | + break; |
| 199 | + case typeof petGetResponse.data === "string": |
| 200 | + writer.writeStringValue("data", petGetResponse.data); |
| 201 | + break; |
| 202 | + default: |
| 203 | + writer.writeObjectValue<Cat | Dog>("data", petGetResponse.data, serializePetGetResponse_data); |
| 204 | + break; |
| 205 | + } |
| 206 | + writer.writeStringValue("request_id", petGetResponse.request_id); |
| 207 | + writer.writeAdditionalData(petGetResponse.additionalData); |
| 208 | +} |
| 209 | +/** |
| 210 | + * Serializes information the current object |
| 211 | + * @param writer Serialization writer to use to serialize this model |
| 212 | + */ |
| 213 | +export function serializePetGetResponse_data(writer: SerializationWriter, petGetResponse_data: Partial<Cat | Dog> | undefined = {}): void { |
| 214 | + serializeCat(writer, petGetResponse_data as Cat); |
| 215 | + serializeDog(writer, petGetResponse_data as Dog); |
| 216 | +} |
0 commit comments