pub struct InternalAppSharingArtifact {
pub certificate_fingerprint: Option<String>,
pub download_url: Option<String>,
pub sha256: Option<String>,
}Expand description
An artifact resource which gets created when uploading an APK or Android App Bundle through internal app sharing.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- uploadapk internalappsharingartifacts (response)
- uploadbundle internalappsharingartifacts (response)
Fields§
§certificate_fingerprint: Option<String>The sha256 fingerprint of the certificate used to sign the generated artifact.
download_url: Option<String>The download URL generated for the uploaded artifact. Users that are authorized to download can follow the link to the Play Store app to install it.
sha256: Option<String>The sha256 hash of the artifact represented as a lowercase hexadecimal number, matching the output of the sha256sum command.
Trait Implementations§
Source§impl Clone for InternalAppSharingArtifact
impl Clone for InternalAppSharingArtifact
Source§fn clone(&self) -> InternalAppSharingArtifact
fn clone(&self) -> InternalAppSharingArtifact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InternalAppSharingArtifact
impl Debug for InternalAppSharingArtifact
Source§impl Default for InternalAppSharingArtifact
impl Default for InternalAppSharingArtifact
Source§fn default() -> InternalAppSharingArtifact
fn default() -> InternalAppSharingArtifact
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InternalAppSharingArtifact
impl<'de> Deserialize<'de> for InternalAppSharingArtifact
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 Resource for InternalAppSharingArtifact
impl ResponseResult for InternalAppSharingArtifact
Auto Trait Implementations§
impl Freeze for InternalAppSharingArtifact
impl RefUnwindSafe for InternalAppSharingArtifact
impl Send for InternalAppSharingArtifact
impl Sync for InternalAppSharingArtifact
impl Unpin for InternalAppSharingArtifact
impl UnsafeUnpin for InternalAppSharingArtifact
impl UnwindSafe for InternalAppSharingArtifact
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