====== Models ====== .. code:: python from typing import Any, Dict, List, Literal, Optional, Union ProfileType = Literal["other"] Solution = Literal["sdwan"] class GetSdwanOtherFeatureProfilesGetResponse: # User who last created this. created_by: Optional[str] # Timestamp of creation created_on: Optional[int] description: Optional[str] # User who last updated this. last_updated_by: Optional[str] # Timestamp of last update last_updated_on: Optional[int] profile_id: Optional[str] profile_name: Optional[str] profile_type: Optional[ProfileType] solution: Optional[Solution] class CreateSdwanOtherFeatureProfilePostResponse: """ Feature Profile POST Response schema """ id: str class FromFeatureProfileDef: copy: str class CreateSdwanOtherFeatureProfilePostRequest: """ Feature Profile Schema for POST Request """ description: str name: str from_feature_profile: Optional[FromFeatureProfileDef] class AssociatedProfileParcels: parcel_id: Optional[str] parcel_type: Optional[str] payload: Optional[Any] subparcels: Optional[List[Any]] class GetSingleSdwanOtherPayload: associated_profile_parcels: Optional[ List[AssociatedProfileParcels] ] # User who last created this. created_by: Optional[str] # Timestamp of creation created_on: Optional[int] description: Optional[str] # User who last updated this. last_updated_by: Optional[str] # Timestamp of last update last_updated_on: Optional[int] profile_id: Optional[str] profile_name: Optional[str] profile_type: Optional[ProfileType] solution: Optional[Solution] class EditSdwanOtherFeatureProfilePutResponse: """ Feature Profile PUT Response schema """ id: str class EditSdwanOtherFeatureProfilePutRequest: """ Feature Profile Schema for PUT Request """ description: str name: str