pub struct ListComboActivity { /* private fields */ }Expand description
Request builder for listing combo activity.
Implementations§
Source§impl ListComboActivity
impl ListComboActivity
Sourcepub fn market_id(self, ids: impl IntoIterator<Item = impl ToString>) -> Self
pub fn market_id(self, ids: impl IntoIterator<Item = impl ToString>) -> Self
Filter by combo condition ID(s) (0x + 62 hex).
Sourcepub fn offset(self, offset: u32) -> Self
pub fn offset(self, offset: u32) -> Self
Set the pagination offset (0-10000, default: 0).
Ignored when cursor is set.
Sourcepub fn cursor(self, cursor: impl Into<String>) -> Self
pub fn cursor(self, cursor: impl Into<String>) -> Self
Continue from a previous response’s pagination.next_cursor.
When present this supersedes offset, which is ignored.
Invalid, tampered, or cross-endpoint tokens return a 400.
Sourcepub async fn send(self) -> Result<CombosActivityResponse, DataApiError>
pub async fn send(self) -> Result<CombosActivityResponse, DataApiError>
Execute the request.
Auto Trait Implementations§
impl !RefUnwindSafe for ListComboActivity
impl !UnwindSafe for ListComboActivity
impl Freeze for ListComboActivity
impl Send for ListComboActivity
impl Sync for ListComboActivity
impl Unpin for ListComboActivity
impl UnsafeUnpin for ListComboActivity
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