pub struct GetMocksMockIdResponseMock {
pub collection: Option<String>,
pub config: Option<GetMocksMockIdResponseMockConfig>,
pub created_at: Option<String>,
pub deactivated: Option<bool>,
pub environment: Option<String>,
pub id: Option<String>,
pub is_public: Option<bool>,
pub mock_url: Option<String>,
pub name: Option<String>,
pub owner: Option<String>,
pub uid: Option<String>,
pub updated_at: Option<String>,
}
Fields§
§collection: Option<String>
The mock’s associated collection unique ID.
config: Option<GetMocksMockIdResponseMockConfig>
Information about the mock server’s configuration.
created_at: Option<String>
The date and time at which the mock server was created.
deactivated: Option<bool>
If true, the mock server is not active. Mock servers deactivate when a linked collection or environment is deleted.
environment: Option<String>
The mock server’s associated environment ID.
id: Option<String>
The mock server’s ID.
is_public: Option<bool>
If true, the mock server is public.
mock_url: Option<String>
The mock server URL.
name: Option<String>
The mock server’s name.
owner: Option<String>
The ID of mock server’s owner.
uid: Option<String>
The mock server’s unique ID.
updated_at: Option<String>
The date and time at which the mock server was last updated.
Trait Implementations§
Source§impl Clone for GetMocksMockIdResponseMock
impl Clone for GetMocksMockIdResponseMock
Source§fn clone(&self) -> GetMocksMockIdResponseMock
fn clone(&self) -> GetMocksMockIdResponseMock
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GetMocksMockIdResponseMock
impl Debug for GetMocksMockIdResponseMock
Source§impl<'de> Deserialize<'de> for GetMocksMockIdResponseMock
impl<'de> Deserialize<'de> for GetMocksMockIdResponseMock
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
impl StructuralPartialEq for GetMocksMockIdResponseMock
Auto Trait Implementations§
impl Freeze for GetMocksMockIdResponseMock
impl RefUnwindSafe for GetMocksMockIdResponseMock
impl Send for GetMocksMockIdResponseMock
impl Sync for GetMocksMockIdResponseMock
impl Unpin for GetMocksMockIdResponseMock
impl UnwindSafe for GetMocksMockIdResponseMock
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