use blockchyp; use std::error::Error; fn update_branding_asset_example() -> Result<(), Box> { // sample credentials let creds = blockchyp::APICredentials { api_key: "ZDSMMZLGRPBPRTJUBTAFBYZ33Q".to_string(), bearer_token: "ZLBW5NR4U5PKD5PNP3ZP3OZS5U".to_string(), signing_key: "9c6a5e8e763df1c9256e3d72bd7f53dfbd07312938131c75b3bfd254da787947".to_string(), }; // instantiate the client let client = blockchyp::Client::new(creds); let request = blockchyp::BrandingAsset{ media_id: "".to_string(), padded: true, ordinal: 10, start_date: "01/06/2021".to_string(), start_time: "14:00".to_string(), end_date: "11/05/2024".to_string(), end_time: "16:00".to_string(), notes: "Test Branding Asset".to_string(), preview: false, enabled: true, ..Default::default() }; let (response, err) = client.update_branding_asset(&request); if let Some(e) = err { eprintln!("Unexpected error occurred: {:?}", e); return Err(e) } if response.success { println!("Success"); } println!("Response: {:?}", response); Ok(()) } fn main() -> Result<(), Box> { update_branding_asset_example()?; println!("Example completed successfully!"); Ok(()) }