pub struct FileReference {
pub id: String,
pub reference_url: String,
pub content_type: String,
pub create_time: DateTime<Utc>,
pub size: String,
}Expand description
Paypal File reference
Fields§
§id: StringThe ID of the referenced file.
reference_url: StringThe reference URL for the file.
content_type: StringContent type
create_time: DateTime<Utc>The date and time when the file was created
size: StringThe size of the file, in bytes.
Trait Implementations§
Source§impl Clone for FileReference
impl Clone for FileReference
Source§fn clone(&self) -> FileReference
fn clone(&self) -> FileReference
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 FileReference
impl Debug for FileReference
Source§impl<'de> Deserialize<'de> for FileReference
impl<'de> Deserialize<'de> for FileReference
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
Auto Trait Implementations§
impl Freeze for FileReference
impl RefUnwindSafe for FileReference
impl Send for FileReference
impl Sync for FileReference
impl Unpin for FileReference
impl UnwindSafe for FileReference
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