pub struct ParamsEmpLeaveRecordList {
pub start_time: String,
pub end_time: Option<String>,
pub next_token: String,
pub max_results: i64,
}Fields§
§start_time: String开始时间。 格式:YYYY-MM-DDTHH:mm:ssZ(ISO 8601/RFC 3339)
end_time: Option<String>结束时间。 格式:YYYY-MM-DDTHH:mm:ssZ(ISO 8601/RFC 3339)。 说明 如果该参数不传,开始时间距离当前时间不能超过365天。 如果该参数传参,开始时间和结束时间跨度不能超过365天。
next_token: String分页游标。 如果是首次查询,该参数传0。 如果是非首次查询,该参数传上次调用本接口返回的nextToken
max_results: i64每页最大条目数,最大值50
Trait Implementations§
Source§impl Debug for ParamsEmpLeaveRecordList
impl Debug for ParamsEmpLeaveRecordList
Source§impl Default for ParamsEmpLeaveRecordList
impl Default for ParamsEmpLeaveRecordList
Source§fn default() -> ParamsEmpLeaveRecordList
fn default() -> ParamsEmpLeaveRecordList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParamsEmpLeaveRecordList
impl<'de> Deserialize<'de> for ParamsEmpLeaveRecordList
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
Auto Trait Implementations§
impl Freeze for ParamsEmpLeaveRecordList
impl RefUnwindSafe for ParamsEmpLeaveRecordList
impl Send for ParamsEmpLeaveRecordList
impl Sync for ParamsEmpLeaveRecordList
impl Unpin for ParamsEmpLeaveRecordList
impl UnwindSafe for ParamsEmpLeaveRecordList
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