pub type ImageEditResponse = ImageResponse;Expand description
Response from image editing (same shape as generation).
Aliased Type§
pub struct ImageEditResponse {
pub images: Vec<GeneratedImage>,
pub model: String,
pub cost_ticks: i64,
pub balance_after: i64,
pub request_id: String,
}Fields§
§images: Vec<GeneratedImage>Generated images.
model: StringModel that generated the images.
cost_ticks: i64Total cost in ticks.
balance_after: i64Post-deduction credit balance in ticks (Receipt Pattern). Zero for free/cached calls or responses that predate the field.
request_id: StringUnique request identifier.