// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. import Foundation extension Operations { /// A model object public struct GetMetadataChildrenRequest: APIValue { /// the id of the library item to return the children of. @DecimalSerialized public private(set) var ratingKey: Double /// Creates an object with the specified parameters /// /// - Parameter ratingKey: the id of the library item to return the children of. /// public init(ratingKey: Double) { self._ratingKey = DecimalSerialized(wrappedValue: ratingKey) } } } extension Operations.GetMetadataChildrenRequest { var ratingKeyWrapper: DecimalSerialized { return _ratingKey } }