pub struct AccView {
pub basis: Option<String>,
pub created_at: Option<i32>,
pub evidence_doc_id: Option<String>,
pub expires_at: Option<i32>,
pub id: Option<String>,
pub method: Option<String>,
pub note: Option<String>,
pub reviewer_sub: Option<String>,
pub status: Option<String>,
pub subject_id: Option<String>,
pub updated_at: Option<i32>,
}Fields§
§basis: Option<String>Basis is the qualification category: income, net_worth, professional_license, or entity.
created_at: Option<i32>CreatedAt is the unix second the record was created.
evidence_doc_id: Option<String>EvidenceDocID references an evidence document in the org’s sealed data room.
expires_at: Option<i32>ExpiresAt is the unix second a confirmation ages out; 0 means none.
id: Option<String>ID is the accreditation record’s opaque id.
method: Option<String>Method is how the state was established: self_attested, third_party_letter, or provider_verified.
note: Option<String>Note is a non-PII operator note.
reviewer_sub: Option<String>ReviewerSub is the org user who recorded a decision on this record.
status: Option<String>Status is the tracked state: asserted, provider_verified, reviewer_confirmed, rejected, or expired.
subject_id: Option<String>SubjectID is the opaque id of the subject the record is about.
updated_at: Option<i32>UpdatedAt is the unix second the record last changed.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AccView
impl<'de> Deserialize<'de> for AccView
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 AccView
Auto Trait Implementations§
impl Freeze for AccView
impl RefUnwindSafe for AccView
impl Send for AccView
impl Sync for AccView
impl Unpin for AccView
impl UnsafeUnpin for AccView
impl UnwindSafe for AccView
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