/** * An object that represents the results of creating an asset upload URL. * * You can submit your asset to the URL provided in this response via an HTTP POST request. * * API schema: CKDBAssetUploadUrlResponse * API version: 1.3.2 */ export interface CKDBAssetUploadUrlResponse { /** * The URL for uploading your asset. */ url: string; } /** * An object the provides the functions that * transform {@link CKDBAssetUploadUrlResponse } to and from JSON. */ export declare const jsonCodecCKDBAssetUploadUrlResponseOwnProperties: { /** * Get an encoder that transforms {@link CKDBAssetUploadUrlResponse }'s * own properties to JSON. */ readonly getEncoder: () => { readonly url: (value: string) => import("@apple/cktool.core").ValidatedNEA; }; /** * Get a decoder that transforms {@link CKDBAssetUploadUrlResponse }'s * own properties from JSON. */ readonly getDecoder: () => { readonly url: (value: string) => import("@apple/cktool.core").ValidatedNEA; }; };