/** * Parses string according to EET spec e.g 17796128-AED2BB9E-2301FF97-0A75656A-DF2B011D * @param val hex splitted into 5 groups containing 8 digits * @return */ public Builder bkp(String val) { _bkp = EetRegisterRequest.parseBkp(val); return(this); }
public Builder dat_trzby(String val) { _dat_trzby = EetRegisterRequest.parseDate(val); return(this); }
/// <summary> /// Sets Podpisovy kod poplatnika. Jedna se o podpis vybranych dat. Computed when private key available during build() call. /// </summary> /// <param name="val">The PKP.</param> /// <returns></returns> public EetRequestBuilder SetPkp(string val) { Pkp = EetRegisterRequest.ParsePkp(val); return(this); }
/// <summary> /// Sets datum provedeni trzby. /// </summary> /// <param name="val">Datum provedeni trzby.</param> /// <returns>This builder</returns> public EetRequestBuilder SetDatTrzby(string val) { // v delphi lze vlozit datum v textovem tvaru DatTrzby = EetRegisterRequest.ParseDate(val); return(this); }
/// <summary> /// Sets Datum a cas odeslani zpravy na server. /// </summary> /// <param name="val">Datum a cas odeslani zpravy na server.</param> /// <returns>This builder</returns> public EetRequestBuilder SetDatOdesl(string val) { DatOdesl = EetRegisterRequest.ParseDate(val); return(this); }
/// <summary> /// Sets Podpisovy kod poplatnika. Jedna se o podpis vybranych dat. Computed when private key available during build() call. /// </summary> /// <param name="val">The PKP.</param> /// <returns></returns> public EetRequestBuilder SetPkp(string val) {// v delphi lze vlozit pkp v textovem tvaru Pkp = EetRegisterRequest.ParsePkp(val); return(this); }