pub struct ValidVerificationDetail {
pub verification_detail_type: String,
pub valid_verification_statuses: Vec<VerificationStatus>,
}Expand description
ValidVerificationDetail : The types of verification details that may be provided for the order and the criteria required for when the type of verification detail can be provided. The types of verification details allowed depend on the type of regulated product and will not change order to order.
Fields§
§verification_detail_type: StringA supported type of verification detail. The type indicates which verification detail could be shared while updating the regulated order. Valid value: prescriptionDetail.
valid_verification_statuses: Vec<VerificationStatus>A list of valid verification statuses where the associated verification detail type may be provided. For example, if the value of this field is ["Approved"], calls to provide the associated verification detail will fail for orders with a VerificationStatus of Pending, Rejected, Expired, or Cancelled.
Implementations§
Source§impl ValidVerificationDetail
impl ValidVerificationDetail
Sourcepub fn new(
verification_detail_type: String,
valid_verification_statuses: Vec<VerificationStatus>,
) -> ValidVerificationDetail
pub fn new( verification_detail_type: String, valid_verification_statuses: Vec<VerificationStatus>, ) -> ValidVerificationDetail
The types of verification details that may be provided for the order and the criteria required for when the type of verification detail can be provided. The types of verification details allowed depend on the type of regulated product and will not change order to order.
Trait Implementations§
Source§impl Clone for ValidVerificationDetail
impl Clone for ValidVerificationDetail
Source§fn clone(&self) -> ValidVerificationDetail
fn clone(&self) -> ValidVerificationDetail
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more