[][src]Struct giteki::list::RequestParameters

pub struct RequestParameters {
    pub sc: u32,
    pub dc: u8,
    pub of: u8,
    pub nam: Option<String>,
    pub num: Option<String>,
    pub tn: Option<String>,
    pub oc: Option<String>,
    pub ds: Option<String>,
    pub de: Option<String>,
    pub afp: Option<u8>,
    pub bs: Option<u8>,
    pub rec: Option<String>,
    pub tec: Option<String>,
    pub sk: u8,
    pub mc: u8,
}

一覧詳細情報取得APIのリクエストパラメータ

Fields

sc: u32

スタートカウント

一覧の取得開始件数を指定。

dc: u8

取得件数

1:10件

2:20件

3:30件

4:50件

5:100件

6:500件

7:1000件

of: u8

取得形式

1:CSV

2:JSON

3:XML

nam: Option<String>

氏名又は名称

「技術基準適合証明又は工事設計認証を受けた者若しくは技術基準適合自己確認の届出業者の氏名又は名称」を指定。(部分一致検索)

num: Option<String>

番号

「技術基準適合証明番号、工事設計認証番号又は届出番号」を指定。

tn: Option<String>

型式又は名称

「機器の型式又は名称」を指定。(部分一致検索)

oc: Option<String>

認証機関コード

※「機関コード」を参照。

ds: Option<String>

年月日(開始)

年月日(開始)、年月日(終了)を指定(YYYYMMDDで指定)

※年月日(開始)、年月日(終了)を指定した場合の動作については、「年月日による検索方法について」を参照。

de: Option<String>

年月日(終了)

年月日(開始)、年月日(終了)を指定(YYYYMMDDで指定)

※年月日(開始)、年月日(終了)を指定した場合の動作については、「年月日による検索方法について」を参照。

afp: Option<u8>

添付ファイル有

1:有のみ

bs: Option<u8>

BODYSAR対応

1:対応

rec: Option<String>

特定無線設備の種別

※「特定無線設備の種別」を参照。

tec: Option<String>

技術基準適合証明の種類

※「技術基準適合証明の種類」を参照。

sk: u8

並び替えキー

※「並び替えキー」を参照。

mc: u8

文字コード

1:UTF-8 ※デフォルト

2:Shift_JIS

Implementations

impl RequestParameters[src]

pub fn new() -> RequestParameters[src]

pub fn set_sc<T: Into<u32>>(&mut self, sc: T)[src]

pub fn set_dc<T: Into<u8>>(&mut self, dc: T)[src]

pub fn set_nam<S: Into<String>>(&mut self, nam: S)[src]

pub fn set_num<S: Into<String>>(&mut self, num: S)[src]

pub fn set_tn<S: Into<String>>(&mut self, tn: S)[src]

pub fn set_oc<S: Into<String>>(&mut self, oc: S)[src]

pub fn set_ds<S: Into<String>>(&mut self, ds: S)[src]

pub fn set_de<S: Into<String>>(&mut self, de: S)[src]

pub fn set_afp<T: Into<u8>>(&mut self, afp: T)[src]

pub fn set_bs<T: Into<u8>>(&mut self, bs: T)[src]

pub fn set_rec<S: Into<String>>(&mut self, rec: S)[src]

pub fn set_tec<S: Into<String>>(&mut self, tec: S)[src]

pub fn set_sk<T: Into<u8>>(&mut self, sk: T)[src]

Trait Implementations

impl Serialize for RequestParameters[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,