pub struct WebhookFineTuningJobSucceeded {
pub created_at: i64,
pub id: String,
pub data: WebhookFineTuningJobSucceededData,
pub object: Option<WebhookFineTuningJobSucceededObject>,
}
Expand description
Sent when a fine-tuning job has succeeded.
Fields§
§created_at: i64
The Unix timestamp (in seconds) of when the fine-tuning job succeeded.
id: String
The unique ID of the event.
data: WebhookFineTuningJobSucceededData
Event data payload.
object: Option<WebhookFineTuningJobSucceededObject>
The object of the event. Always event
.
Implementations§
Source§impl WebhookFineTuningJobSucceeded
impl WebhookFineTuningJobSucceeded
Sourcepub fn builder() -> WebhookFineTuningJobSucceededBuilder<((), (), (), ())>
pub fn builder() -> WebhookFineTuningJobSucceededBuilder<((), (), (), ())>
Create a builder for building WebhookFineTuningJobSucceeded
.
On the builder, call .created_at(...)
, .id(...)
, .data(...)
, .object(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of WebhookFineTuningJobSucceeded
.
Trait Implementations§
Source§impl Clone for WebhookFineTuningJobSucceeded
impl Clone for WebhookFineTuningJobSucceeded
Source§fn clone(&self) -> WebhookFineTuningJobSucceeded
fn clone(&self) -> WebhookFineTuningJobSucceeded
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for WebhookFineTuningJobSucceeded
impl<'de> Deserialize<'de> for WebhookFineTuningJobSucceeded
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WebhookFineTuningJobSucceeded
impl PartialEq for WebhookFineTuningJobSucceeded
Source§fn eq(&self, other: &WebhookFineTuningJobSucceeded) -> bool
fn eq(&self, other: &WebhookFineTuningJobSucceeded) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebhookFineTuningJobSucceeded
Auto Trait Implementations§
impl Freeze for WebhookFineTuningJobSucceeded
impl RefUnwindSafe for WebhookFineTuningJobSucceeded
impl Send for WebhookFineTuningJobSucceeded
impl Sync for WebhookFineTuningJobSucceeded
impl Unpin for WebhookFineTuningJobSucceeded
impl UnwindSafe for WebhookFineTuningJobSucceeded
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more